-
Notifications
You must be signed in to change notification settings - Fork 349
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.15 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "teamai-cli",
"version": "0.22.0",
"description": "TeamAI — Make Every Team AI Native (skill sync + shared knowledge base, powered by Git)",
"type": "module",
"bin": {
"teamai": "dist/index.js"
},
"files": [
"dist/**/*.js",
"skills",
"agents",
"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",
"cross-spawn": "^7.0.6",
"fflate": "^0.8.3",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"listr2": "^9.0.5",
"ora": "^8.1.0",
"semver": "^7.8.5",
"simple-git": "^3.36.0",
"smol-toml": "^1.7.1",
"tree-sitter-wasms": "0.1.13",
"web-tree-sitter": "0.25.10",
"yaml": "^2.6.0",
"zod": "^3.24.0"
},
"overrides": {
"js-yaml": "^3.15.2",
"brace-expansion@1": "1.1.18",
"brace-expansion@2": "2.1.4",
"brace-expansion@5": "5.0.9",
"nanoid": "3.3.19",
"postcss": "8.5.28",
"picomatch": "4.0.7"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.0",
"@types/semver": "^7.8.0",
"@vitest/coverage-v8": "^3.2.7",
"opencode-ai": "1.18.23",
"standard-version": "^9.5.0",
"tsup": "^8.3.0",
"typescript": "^5.7.0",
"vitest": "^3.2.7"
},
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
}
}