-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.28 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
{
"name": "cforge",
"version": "0.4.2",
"description": "Claude Code workflow orchestration engine",
"type": "module",
"bin": {
"cforge": "dist/index.js"
},
"files": [
"dist",
"templates",
"registry"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test",
"postpublish": "echo 'Published successfully!'"
},
"keywords": [
"claude",
"claude-code",
"workflow",
"orchestration",
"ai",
"cli"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/smartchaos/stack-forge.git"
},
"bugs": {
"url": "https://github.com/smartchaos/stack-forge/issues"
},
"homepage": "https://github.com/smartchaos/stack-forge#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^15.0.0",
"fs-extra": "^11.3.5",
"inquirer": "^14.0.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.10",
"@types/node": "^26.0.0",
"@types/pino": "^7.0.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}