-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 965 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 965 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@alivecomputer/openclaw",
"version": "0.1.0-alpha",
"description": "ALIVE structured context management for OpenClaw",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"openclaw": {
"extensions": [
"dist/index.js"
]
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"openclaw",
"alive",
"context",
"walnut",
"memory"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alivecomputer/alive-openclaw.git"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}