-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.85 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
{
"name": "agent-foundry",
"version": "4.0.0",
"description": "Agent Foundry — workshop-ready AI Agent skill marketplace. 37k+ vetted skills, S/A/B/C ratings, deploy anywhere.",
"type": "module",
"scripts": {
"ocf": "tsx src/cli.ts",
"server": "tsx src/server.ts",
"design:sync-source": "node scripts/sync-design-source.mjs",
"design:verify-source": "node scripts/sync-design-source.mjs --check",
"design:check": "node scripts/md8-design-hook.mjs",
"role-packs:audit-git": "node scripts/audit-role-pack-git-release.mjs",
"role-packs:audit-guides": "node scripts/audit-pack-guide-skill-sections.mjs",
"role-packs:audit-person-names": "node scripts/sanitize-pack-person-names.mjs --check --packs-dir web/public/packs --extra-dir data/job-packs --catalog web/public/data/packs.json --catalog web/public/data/collections.json",
"role-packs:enrich-source-skills": "node scripts/enrich-pack-skill-sections.mjs",
"role-packs:package": "node scripts/package-role-packs.mjs --scope public",
"role-packs:package:all": "node scripts/package-role-packs.mjs --scope all",
"postmortem:scan": "node scripts/scan-postmortems.mjs --strict",
"build": "tsc && npm run design:verify-source && npm run design:check && npm run postmortem:scan",
"dev": "tsx watch src/server.ts",
"workshop:start": "cd web && npm install --silent && npm run dev"
},
"bin": {
"ocf": "./dist/cli.js"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@inquirer/prompts": "^7.0.0",
"better-sqlite3": "^12.8.0",
"chalk": "^5.4.0",
"commander": "^13.0.0",
"execa": "^9.5.0",
"express": "^4.21.0",
"ora": "^8.2.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}