-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.97 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 1.97 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
{
"name": "openshart",
"version": "0.1.0",
"description": "Enterprise-grade encrypted agent memory. If it leaks, you're going to OpenShart yourself.",
"type": "module",
"main": "./dist/index.js",
"openclaw": {
"extensions": [
"./dist/openclaw-plugin.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcharleson/openshart.git"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./backends/postgres": {
"types": "./dist/storage/postgres.d.ts",
"import": "./dist/storage/postgres.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"openclaw.plugin.json"
],
"scripts": {
"build": "tsc && cp openclaw.plugin.json dist/openclaw.plugin.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:pg": "vitest run test/postgres.integration.test.ts",
"test:distributed": "tsx scripts/distributed-test.ts",
"validate": "tsx scripts/validate.ts",
"lint": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"keywords": [
"ai",
"agents",
"memory",
"encryption",
"pii",
"gdpr",
"hipaa",
"soc2",
"shamir",
"fragments"
],
"author": "Top of Funnel",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"better-sqlite3": ">=9.0.0",
"pg": ">=8.0.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"pg": {
"optional": true
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.16.0",
"better-sqlite3": "^11.0.0",
"pg": "^8.16.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"openclaw": {
"extensions": [
"./dist/openclaw-plugin.js"
]
}
}