-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.91 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
{
"name": "@deeplake/hivemind",
"version": "0.7.15",
"description": "Cloud-backed persistent shared memory for AI agents powered by Deeplake",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/activeloopai/hivemind.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"hivemind": "bundle/cli.js"
},
"files": [
"bundle",
"codex/bundle",
"codex/skills",
"cursor/bundle",
"hermes/bundle",
"mcp/bundle",
"pi/extension-source",
"openclaw/dist",
"openclaw/skills",
"openclaw/openclaw.plugin.json",
"openclaw/package.json",
".claude-plugin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node esbuild.config.mjs",
"bundle": "node esbuild.config.mjs",
"dev": "tsc --watch",
"shell": "tsx src/shell/deeplake-shell.ts",
"cli": "tsx src/cli/index.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"dup": "jscpd src",
"audit:openclaw": "node scripts/audit-openclaw-bundle.mjs",
"pack:check": "node scripts/pack-check.mjs",
"ci": "npm run typecheck && npm run dup && npm test",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.ts": [
"bash -c 'tsc --noEmit --skipLibCheck'"
],
"*.md": []
},
"dependencies": {
"@huggingface/transformers": "^3.0.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"deeplake": "^0.3.30",
"js-yaml": "^4.1.1",
"just-bash": "^2.14.0",
"yargs-parser": "^22.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.0",
"@types/yargs-parser": "^21.0.3",
"@vitest/coverage-v8": "^4.1.3",
"esbuild": "^0.28.0",
"husky": "^9.1.7",
"jscpd": "^4.0.9",
"lint-staged": "^16.4.0",
"tsx": "^4.7.0",
"typescript": "^6.0.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=22.0.0"
}
}