-
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.61 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.61 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": "@pixelandprocess/superkit-agents",
"version": "1.3.0",
"description": "Complete AI-optimized development environment for Claude Code with skills, hooks, agents, memory, and structured workflows",
"type": "module",
"bin": {
"superkit-agents": "./dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"templates/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/cli.ts src/index.ts --format esm --dts --clean",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ tests/",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"claude-code",
"ai",
"developer-tools",
"skills",
"agents",
"hooks",
"planning",
"code-review",
"prd",
"ralph",
"autonomous-loop",
"ui-ux",
"design-system"
],
"repository": {
"type": "git",
"url": "https://github.com/Pixel-Process-UG/superkit-agents"
},
"homepage": "https://pixelandprocess.de",
"author": {
"name": "Pixel Process UG",
"email": "info@pixelandprocess.de"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.4.0",
"commander": "^13.0.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.0.0",
"ora": "^8.1.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.0.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.0",
"vitest": "^3.0.0"
}
}