-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "hivemind",
"version": "0.6.32",
"description": "Cloud-backed persistent shared memory for AI agents powered by Deeplake",
"type": "module",
"bin": {
"deeplake-shell": "bundle/deeplake-shell.js"
},
"scripts": {
"build": "tsc && node esbuild.config.mjs",
"bundle": "node esbuild.config.mjs",
"dev": "tsc --watch",
"shell": "tsx src/shell/deeplake-shell.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"ci": "npm run typecheck && npm test",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"bash -c 'tsc --noEmit --skipLibCheck'"
],
"*.md": []
},
"dependencies": {
"deeplake": "^0.3.30",
"just-bash": "^2.14.0",
"yargs-parser": "^22.0.0"
},
"devDependencies": {
"@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",
"lint-staged": "^16.4.0",
"tsx": "^4.7.0",
"typescript": "^6.0.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=22.0.0"
}
}