-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.53 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.53 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "teamai-cli",
"version": "0.16.4",
"description": "TeamAI — the team harness for AI agents (skill sync + shared knowledge base, powered by Git)",
"type": "module",
"bin": {
"teamai": "dist/index.js"
},
"files": [
"dist/**/*.js",
"skills",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"release": "standard-version",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tencent/teamai-cli.git"
},
"homepage": "https://github.com/Tencent/teamai-cli#readme",
"bugs": {
"url": "https://github.com/Tencent/teamai-cli/issues"
},
"keywords": [
"ai",
"team",
"devkit",
"skills",
"sharing"
],
"author": "jeffyxu <jeffyxu@tencent.com>",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"ora": "^8.1.0",
"simple-git": "^3.27.0",
"yaml": "^2.6.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.0",
"@vitest/coverage-v8": "^2.1.9",
"standard-version": "^9.5.0",
"tsup": "^8.3.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}