-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "gstack-industrial",
"version": "1.2.0",
"description": "Auto-discover and suggest the right Claude Code skill at the right time",
"type": "module",
"scripts": {
"install": "bun run install.ts",
"test": "bun test",
"generate": "bun run skill-router/gen-skill-docs.ts",
"check": "bun run skill-router/gen-skill-docs.ts --check",
"watch": "bun run skill-router/gen-skill-docs.ts --watch",
"test-router": "bun run skill-router/test-cli.ts",
"discover": "bun run skill-router/auto-discover.ts",
"discover:dry": "bun run skill-router/auto-discover.ts --dry-run --verbose"
},
"keywords": [
"claude-code",
"claude",
"gstack",
"ai",
"automation",
"skill-router",
"template-system",
"anthropic",
"ai-agent",
"productivity",
"developer-tools",
"hook"
],
"author": "Kevin Tseng",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kevintseng/gstack-industrial.git"
},
"bugs": {
"url": "https://github.com/kevintseng/gstack-industrial/issues"
},
"homepage": "https://github.com/kevintseng/gstack-industrial#readme",
"engines": {
"bun": ">=1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0"
}
}