-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 880 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 880 Bytes
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
{
"name": "claw-mesh",
"version": "0.1.0",
"description": "FSC-MESH: WireGuard + FSC + MemoV + Redis Streams",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"ontology:init": "node memory/ontology-init.js",
"ontology:query": "node -e \"const o=require('./memory/ontology');console.log(JSON.stringify(o.query({type:process.argv[1]}),null,2))\" --",
"causal:analyze": "node -e \"const c=require('./memory/causal');const f=c.diagnoseFailure('manual',process.argv[1]);console.log(JSON.stringify(f,null,2))\" --",
"ralph": "bash scripts/ralph.sh"
},
"keywords": [
"fsc",
"wireguard",
"memov",
"redis"
],
"author": "AI-1 (陈昭芊)",
"license": "MIT",
"devDependencies": {
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@msgpack/msgpack": "^3.1.3",
"redis": "^5.11.0"
}
}