-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.3 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
{
"name": "buildwithclaude",
"version": "1.0.0",
"private": true,
"description": "A comprehensive collection of specialized AI subagents for [Claude Code](https://docs.anthropic.com/en/docs/claude-code), designed to enhance development workflows with domain-specific expertise.",
"main": "index.js",
"scripts": {
"test": "npm run validate",
"test:integration": "./tests/plugin-test-harness.sh",
"validate": "node scripts/validate-all.js",
"validate:subagents": "node scripts/validate-subagents.js",
"validate:hooks": "node scripts/validate-hooks.js",
"generate:registry": "node scripts/generate-registry.js",
"fetch:plugins": "node scripts/fetch-plugins.js",
"fetch:all": "npm run fetch:plugins && npm run generate:registry",
"start": "node web-ui/server.js"
},
"workspaces": [
"web-ui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/davepoon/buildwithclaude.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/davepoon/buildwithclaude/issues"
},
"homepage": "https://github.com/davepoon/buildwithclaude#readme",
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chalk": "^5.4.1",
"glob": "^11.0.3",
"gray-matter": "^4.0.3"
},
"devDependencies": {}
}