-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.54 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.54 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
{
"name": "crow-platform",
"version": "0.1.0",
"description": "Self-hosted AI platform with persistent memory, encrypted P2P sharing, and 20+ integrations — works with Claude, ChatGPT, Gemini, and any MCP client",
"type": "module",
"scripts": {
"setup": "node scripts/setup.js",
"memory-server": "node servers/memory/index.js",
"research-server": "node servers/research/index.js",
"sharing-server": "node servers/sharing/index.js",
"storage-server": "node servers/storage/index.js",
"blog-server": "node servers/blog/index.js",
"init-db": "node scripts/init-db.js",
"wizard": "node scripts/wizard.js",
"desktop-config": "node scripts/generate-desktop-config.js",
"gateway": "node servers/gateway/index.js",
"identity": "node -e \"import('./servers/sharing/identity.js').then(m => m.displayIdentity())\"",
"identity:export": "node -e \"import('./servers/sharing/identity.js').then(m => m.exportIdentity())\"",
"identity:import": "node -e \"import('./servers/sharing/identity.js').then(m => m.importIdentity())\"",
"create-integration": "node scripts/create-integration.js",
"mcp-config": "node scripts/generate-mcp-config.js",
"migrate-data": "node scripts/migrate-data-dir.js",
"check": "node scripts/check.js",
"sync-skills": "node scripts/sync-skills.js",
"backup": "bash scripts/backup.sh",
"restore": "bash scripts/restore.sh",
"reset-password": "node scripts/reset-password.js",
"test:claude-ai": "node scripts/test-claude-ai.js",
"test:auth": "node --test tests/auth-network.test.js"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"@mozilla/readability": "^0.6.0",
"@noble/ed25519": "^2.2.0",
"@noble/hashes": "^1.7.0",
"@noble/secp256k1": "^2.2.0",
"chrome-remote-interface": "^0.34.0",
"cors": "^2.8.6",
"cron-parser": "^5.5.0",
"express": "^4.21.0",
"express-rate-limit": "^8.3.0",
"http-proxy-middleware": "^3.0.5",
"hypercore": "^11.4.0",
"hyperswarm": "^4.9.0",
"linkedom": "^0.18.12",
"marked": "^17.0.4",
"minio": "^8.0.7",
"multer": "^2.1.1",
"nostr-tools": "^2.10.0",
"otpauth": "^9.5.0",
"qrcode": "^1.5.4",
"sanitize-html": "^2.17.1",
"web-push": "^3.6.7",
"ws": "^8.19.0",
"youtube-sr": "^4.3.12",
"zod": "^3.24.0"
},
"optionalDependencies": {
"open-multi-agent": "file:../open-multi-agent"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"acorn": "^8.16.0",
"acorn-walk": "^8.3.5"
}
}