-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.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
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
{
"name": "@codewithjuber/forgekit",
"version": "0.17.0",
"description": "One brain for every AI coding agent \u2014 the cognitive substrate every frozen model is missing (proof-carrying memory, impact foresight, enforced guardrails), authored once and delivered as native config to Claude Code, Codex, Cursor, Gemini, Aider, and more.",
"type": "module",
"bin": {
"forge": "src/cli.js"
},
"engines": {
"node": ">=20"
},
"exports": {
".": "./src/cli.js",
"./model-tiers": "./src/model_tiers.js",
"./package.json": "./package.json"
},
"author": "CodeWithJuber",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeWithJuber/forgekit.git"
},
"bugs": {
"url": "https://github.com/CodeWithJuber/forgekit/issues"
},
"homepage": "https://github.com/CodeWithJuber/forgekit#readme",
"funding": "https://github.com/sponsors/CodeWithJuber",
"sideEffects": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src",
"source",
"global",
"templates",
"plugin",
"hooks",
".claude-plugin",
".codex-plugin",
".mcp.json",
"bin",
"brand.json",
"install.sh",
"README.md",
"ARCHITECTURE.md",
"ONBOARDING.md",
"CHANGELOG.md",
"LICENSE",
"public",
"scripts"
],
"scripts": {
"test": "node --test test/*.test.js",
"bench": "node bench/bench.mjs",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"typecheck": "tsc -p tsconfig.json",
"coverage": "node --test --experimental-test-coverage test/*.test.js",
"bump": "node scripts/bump.mjs",
"forge": "node src/cli.js",
"pages:build": "node scripts/build-pages.mjs",
"pages:build:live": "BUILD_PAGES_LIVE=1 node scripts/build-pages.mjs"
},
"keywords": [
"ai-agents",
"claude-code",
"claude-code-plugin",
"codex",
"cursor",
"agents-md",
"agent-memory",
"team-memory",
"crdt",
"blast-radius",
"cost-optimization",
"code-quality",
"mcp",
"cli",
"zero-dependency",
"llm",
"developer-tools"
],
"devDependencies": {
"@biomejs/biome": "2.5.2",
"@types/node": "^26",
"typescript": "^6"
}
}