-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.93 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.93 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
{
"name": "mindforge-cc",
"version": "11.0.0",
"description": "MindForge \u2014 Sovereign Agentic Intelligence Framework. Sovereign Stability: Production-Hardened Agentic Intelligence (v11)",
"bin": {
"mindforge-cc": "bin/install.js",
"mindforge": "bin/mindforge-cli.js"
},
"files": [
".agent/CLAUDE.md",
".agent/hooks/",
".mindforge/MINDFORGE-SCHEMA.json",
".mindforge/MINDFORGE-V2-SCHEMA.json",
".mindforge/config.json",
".mindforge/personas/",
".mindforge/skills/",
".mindforge/engine/",
"bin/",
"docs/getting-started.md",
"docs/user-guide.md",
"docs/sdk-reference.md",
"docs/commands-reference.md",
"docs/troubleshooting.md",
"docs/faq.md",
"examples/",
"CHANGELOG.md",
"LICENSE",
"MINDFORGE.md",
"README.md",
"RELEASENOTES.md",
"SECURITY.md"
],
"scripts": {
"test": "node tests/run-all.js",
"test:single": "node",
"coverage": "npx c8 node tests/run-all.js",
"lint": "eslint .",
"commit": "cz",
"prepare": "husky"
},
"keywords": [
"claude-code",
"antigravity",
"agentic-framework",
"context-engineering",
"enterprise",
"mindforge",
"wasm-sqlite",
"zero-native-deps",
"agent-orchestration",
"sovereign-ai"
],
"author": "sairamugge",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sairam0424/MindForge.git"
},
"bugs": {
"url": "https://github.com/sairam0424/MindForge/issues"
},
"homepage": "https://github.com/sairam0424/MindForge#readme",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.0.0",
"c8": "^10.0.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"husky": "9.1.7",
"playwright": "^1.40.0"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"express": "^4.19.2",
"sql.js": "^1.14.1"
}
}