-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.14 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
{
"name": "morphic-kernel",
"version": "0.1.0",
"description": "Zero-trust, hot-swappable runtime for AI-generated code modules: deterministic constraint collapse (QEC), sandboxed validation, atomic zero-downtime hot-swap, and a hash-chained provenance ledger.",
"type": "module",
"main": "src/kernel.js",
"engines": { "node": ">=18" },
"scripts": {
"start": "node src/kernel.js",
"dev": "node --watch src/kernel.js",
"test": "vitest run",
"test:watch": "vitest",
"bench": "node benchmarks/swapBenchmark.js",
"lint": "echo \"(add eslint config if desired)\" && exit 0"
},
"keywords": [
"hot-swap", "runtime", "microkernel", "ai-generated-code",
"sandbox", "zero-trust", "provenance", "express", "agents"
],
"license": "Apache-2.0",
"author": "Dante Bullock (Sovereign Logic)",
"dependencies": {
"express": "^4.19.2",
"nanoid": "^5.0.7",
"dotenv": "^16.4.5"
},
"optionalDependencies": {
"socket.io": "^4.7.5",
"chokidar": "^3.6.0",
"@babel/parser": "^7.24.0",
"@babel/traverse": "^7.24.0",
"better-sqlite3": "^11.0.0"
},
"devDependencies": {
"vitest": "^1.6.0"
}
}