Files
Kyle Fang f83027e79d feat: add comprehensive CI/CD pipeline with GitHub Actions
- Add CI workflow for testing, type checking, and building
- Add publish workflow for npm releases
- Add automated release workflow with changesets
- Add PR checks for changesets and formatting
- Add security scanning workflow
- Add documentation validation workflow
- Configure changesets for version management
- Add Prettier for code formatting
- Add unit tests for core and adapter packages
- Add contributing guidelines and release documentation
- Configure Dependabot for dependency updates
- Update README with CI badges

This establishes a complete CI/CD pipeline for automated testing,
versioning, and publishing of the React Telegram packages.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-01 10:10:22 +08:00

60 lines
1.4 KiB
JSON

{
"name": "@react-telegram/mtcute-adapter",
"version": "0.1.0",
"description": "MTCute adapter for React Telegram bots",
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"bun": "./src/index.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "bun run clean && bun run build:types",
"build:types": "tsc",
"clean": "rm -rf dist",
"test": "bun test",
"test:watch": "bun test --watch",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@mtcute/bun": "^0.24.3",
"@mtcute/dispatcher": "^0.24.3",
"@mtcute/tl": "*",
"@react-telegram/core": "workspace:*",
"react": "^19.1.0"
},
"devDependencies": {
"@types/react": "npm:pure-react-types@^0.1.4",
"typescript": "^5"
},
"peerDependencies": {
"@react-telegram/core": "^0.1.0",
"react": ">=18.0.0"
},
"keywords": [
"react",
"telegram",
"bot",
"mtcute",
"adapter"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/react-telegram.git"
},
"bugs": {
"url": "https://github.com/your-username/react-telegram/issues"
},
"homepage": "https://github.com/your-username/react-telegram#readme"
}