-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.16 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
{
"name": "teamagent",
"version": "0.1.0",
"private": true,
"description": "团队AI自进化引擎",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.base.json",
"teamagent": "tsx packages/cli/src/bin.ts",
"smoke:llm": "tsx scripts/smoke-llm.ts",
"smoke:hook": "tsx scripts/hook-smoke-test.ts",
"smoke:claudefast": "tsx scripts/claudefast-stream-json-tests.ts",
"evidence:phase-gaps": "tsx scripts/evidence-phase-gaps-ab.ts",
"smoke:claudefast:rule-card": "tsx scripts/claudefast-rule-card-smoke.ts",
"verify": "tsx packages/cli/src/bin.ts verify",
"dogfood-report": "tsx packages/cli/src/bin.ts dogfood-report",
"benchmark": "pnpm --filter @teamagent/benchmark bench",
"build:publish": "pnpm --filter teamagent build",
"prepublish:teamagent": "pnpm build:publish && cd packages/teamagent && npm pack --dry-run",
"dashboard": "node scripts/generate-dashboard.cjs",
"regen-static-user-skills": "node scripts/regen-static-user-skills.cjs",
"setup:codex-cloud": "bash scripts/setup-codex-cloud.sh",
"install:from-md": "tsx scripts/install-from-md.ts",
"frontend:install": "cd landing/rocketteam && npm install --no-audit --no-fund",
"frontend:dev": "cd landing/rocketteam && npm run dev",
"frontend:build": "cd landing/rocketteam && npm run build",
"frontend:start": "cd landing/rocketteam && npm run start",
"frontend:typecheck": "cd landing/rocketteam && npm run typecheck"
},
"engines": {
"node": ">=22.5.0"
},
"packageManager": "pnpm@9.15.9",
"devDependencies": {
"@anthropic-ai/claude-code": "^2.1.121",
"@types/node": "^22.10.0",
"@xenova/transformers": "^2.17.2",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"dependencies": {
"onnxruntime-node": "^1.14.0",
"sharp": "^0.33.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"@anthropic-ai/claude-code",
"esbuild",
"protobufjs",
"sharp",
"tree-sitter-javascript",
"tree-sitter-python",
"tree-sitter-typescript"
]
}
}