feishu-devops 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "feishu-devops",
3
+ "version": "0.1.0",
4
+ "description": "飞书消息 bot:扫码创建应用,通过 Claude Code / Codex 处理消息",
5
+ "type": "module",
6
+ "bin": {
7
+ "feishu-devops": "./bin/feishu-devops.mjs"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "bin",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "dev": "tsx watch src/cli/index.ts run",
16
+ "start": "tsx src/cli/index.ts start",
17
+ "stop": "tsx src/cli/index.ts stop",
18
+ "restart": "tsx src/cli/index.ts restart",
19
+ "build": "tsup",
20
+ "start:dist": "node bin/feishu-devops.mjs start",
21
+ "typecheck": "tsc --noEmit",
22
+ "prepublishOnly": "pnpm typecheck && pnpm build",
23
+ "publish": "npm publish --access public"
24
+ },
25
+ "dependencies": {
26
+ "@larksuite/channel": "^0.2.0",
27
+ "commander": "^12.1.0",
28
+ "cross-spawn": "^7.0.6",
29
+ "graceful-fs": "^4.2.11",
30
+ "qrcode-terminal": "^0.12.0"
31
+ },
32
+ "devDependencies": {
33
+ "@types/cross-spawn": "^6.0.6",
34
+ "@types/graceful-fs": "^4.1.9",
35
+ "@types/node": "^22.10.0",
36
+ "@types/qrcode-terminal": "^0.12.2",
37
+ "tsup": "^8.3.5",
38
+ "tsx": "^4.19.2",
39
+ "typescript": "^5.6.3"
40
+ },
41
+ "engines": {
42
+ "node": ">=20.12.0"
43
+ },
44
+ "license": "MIT"
45
+ }