-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "zentao-cli",
"version": "0.1.5",
"type": "module",
"description": "禅道命令行工具,支持在你喜爱的终端里访问和操作禅道数据,对 AI Agents 友好。",
"author": "Sun Hao <sunhao@chandao.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/easysoft/zentao-cli.git"
},
"keywords": [
"zentao",
"禅道",
"cli",
"project-management"
],
"bin": {
"zentao": "./bin/zentao.js"
},
"main": "./dist/index.js",
"files": [
"bin",
"dist",
"skills"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun run scripts/build.ts --minify",
"build:sf": "bun run scripts/build.ts --compile --minify",
"update-registry": "bun run scripts/update-registry.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"coverage": "bun test --coverage",
"ci": "bun install --frozen-lockfile && bun run typecheck && bun run coverage && bun run build",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^13.0.0",
"configstore": "^7.0.0",
"dot-prop": "^9.0.0",
"turndown": "^7.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/turndown": "^5.0.5",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18",
"bun": ">=1.3.13"
}
}