-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.76 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
{
"name": "skills4coder",
"version": "2.0.0",
"description": "岗位即 Skills 集合,Agent 专业分工协作的编排框架",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc && tsc -p tsconfig.orchestration.json",
"dev": "tsc --watch",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "vitest",
"lint": "eslint . --ext .ts,.js",
"validate-roles": "node scripts/validate-roles.js",
"validate-skills": "node scripts/validate-skills.js"
},
"repository": {
"type": "git",
"url": "https://github.com/standup-coder/skills4coder.git"
},
"keywords": [
"skills",
"agent",
"ai",
"mcp",
"orchestration",
"workflow",
"code-review",
"multi-agent",
"job-description",
"developer-tools"
],
"author": "Skills4Coder Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/standup-coder/skills4coder/issues"
},
"homepage": "https://standup-coder.github.io/skills4coder/",
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0",
"vitepress": "^1.0.0-rc.45",
"vitest": "^1.0.0",
"vue": "^3.5.31"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.0",
"@modelcontextprotocol/sdk": "^0.5.0",
"openai": "^4.0.0",
"zod": "^3.22.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./orchestration/*": {
"import": "./dist/orchestration/*/index.js",
"types": "./dist/orchestration/*/index.d.ts"
}
},
"files": [
"dist/",
"roles/",
"skills/",
"atomic-skills/",
"schema/",
"README.md",
"AGENTS.md"
]
}