-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@wooojin/forgen",
"version": "0.4.13",
"preferGlobal": true,
"main": "dist/lib.js",
"types": "./dist/lib.d.ts",
"exports": {
".": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js"
},
"./lib": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
}
},
"scripts": {
"build": "node scripts/clean-dist.cjs clean && tsc && node scripts/copy-assets.js && node scripts/clean-dist.cjs chmod",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"link": "npm run build && npm link",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"format": "biome format --write src/",
"postinstall": "node scripts/postinstall.js",
"prepare": "npm run build",
"prepublishOnly": "npm run build && node scripts/prepack-hooks.cjs && npm test",
"prepack": "npm run build && node scripts/prepack-hooks.cjs"
},
"author": "jang-ujin",
"license": "MIT",
"description": "When Claude says 'done', forgen makes it prove it — turn-level self-verification + personalized rules, at $0 extra API cost.",
"keywords": [
"claude-code",
"forgen",
"personalization",
"ai-harness",
"workflow",
"ai-agent",
"forge",
"compound-engineering"
],
"repository": {
"type": "git",
"url": "git+https://github.com/forgen-team/forgen.git"
},
"engines": {
"node": ">=22.0.0"
},
"type": "module",
"workspaces": [
"packages/*"
],
"bin": {
"forgen": "dist/cli.js",
"fgx": "dist/fgx.js",
"forgen-mcp": "dist/mcp/server.js"
},
"files": [
"dist/",
"assets/",
"skills/",
"starter-pack/",
"scripts/postinstall.js",
".claude-plugin/",
"hooks/",
"plugin.json",
"README.md",
"README.ko.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md"
],
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.7",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"js-yaml": "^4.1.1",
"zod": "^4.4.3"
},
"peerDependencies": {
"@anthropic-ai/claude-code": ">=2.0.0"
},
"peerDependenciesMeta": {
"@anthropic-ai/claude-code": {
"optional": true
}
}
}