-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "veildb",
"version": "2.0.0",
"description": "VEILdb — Unified IPFS-backed data layer for the VEIL sovereign agent ecosystem. OrbitDB + Helia + AES-256-GCM encryption.",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"keybox": "tsx src/keybox/cli.ts",
"veildb": "tsx src/db/cli.ts",
"veildb:replica": "tsx src/db/replica.ts"
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^14.1.2",
"@chainsafe/libp2p-noise": "^16.1.0",
"@libp2p/mplex": "^10.1.0",
"@libp2p/tcp": "^9.1.0",
"@noble/ciphers": "^1.2.1",
"@noble/curves": "^1.8.1",
"@noble/hashes": "^2.0.1",
"@orbitdb/core": "^2.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"express": "^4.21.2",
"helia": "^5.1.1",
"helmet": "^8.0.0",
"jose": "^6.0.8",
"siwe": "^2.3.2",
"tweetnacl": "^1.0.3",
"ulid": "^2.3.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}