-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.64 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.64 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
{
"name": "ai-dev-kit",
"version": "1.1.0",
"description": "Production-ready AI dev kit for plugin-based developer workflows.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/noah-sheldon/ai-dev-kit.git"
},
"homepage": "https://github.com/noah-sheldon/ai-dev-kit#readme",
"bugs": {
"url": "https://github.com/noah-sheldon/ai-dev-kit/issues"
},
"bin": {
"aidevkit": "scripts/cli.js"
},
"files": [
"AGENTS.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"SECURITY.md",
"VERSION",
".claude-plugin/",
".claude/",
".codex-plugin/",
".codex/",
".cursor/",
".github/",
".mcp.json",
".opencode/",
".gemini/",
"agents/",
"commands/",
"contexts/",
"docs/",
"examples/",
"hooks/",
"install.ps1",
"install.sh",
"manifests/",
"mcp-configs/",
"rules/",
"schemas/",
"scripts/",
"skills/",
"tests/"
],
"scripts": {
"copy-template": "bash scripts/copy-template.sh",
"doctor": "node scripts/doctor.js",
"install": "node scripts/install-apply.js",
"lint": "node scripts/validate-surface.js",
"prepack": "node scripts/validate-surface.js",
"sync:claude": "node scripts/sync-claude.js",
"sync:codex": "node scripts/sync-codex.js",
"sync:gemini": "node scripts/sync-gemini.js",
"sync:opencode": "node scripts/sync-opencode.js",
"test": "node --test tests/smoke.test.js && node scripts/validate-surface.js",
"uninstall": "node scripts/uninstall.js",
"validate": "node scripts/validate-surface.js"
},
"engines": {
"node": ">=18"
}
}