-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.55 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
{
"name": "nemoclaw",
"version": "0.1.0",
"description": "NemoClaw — run OpenClaw inside OpenShell with NVIDIA inference",
"license": "Apache-2.0",
"bin": {
"nemoclaw": "./bin/nemoclaw.js"
},
"scripts": {
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc -p jsconfig.json",
"typecheck:cli": "tsc -p tsconfig.cli.json",
"prepare": "if [ -d .git ]; then if command -v prek >/dev/null 2>&1; then prek install; elif [ -d node_modules/@j178/prek ]; then echo \"ERROR: prek package found but binary not in PATH\" && exit 1; else echo \"Skipping git hook setup (prek not installed)\"; fi; fi",
"prepublishOnly": "cd nemoclaw && env -u npm_config_global -u npm_config_prefix -u npm_config_omit npm install --ignore-scripts && ./node_modules/.bin/tsc"
},
"dependencies": {
"openclaw": "2026.3.11"
},
"files": [
"bin/",
"nemoclaw/dist/",
"nemoclaw/openclaw.plugin.json",
"nemoclaw/package.json",
"nemoclaw-blueprint/",
"scripts/",
"Dockerfile",
".dockerignore"
],
"engines": {
"node": ">=22.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NVIDIA/NemoClaw.git"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@j178/prek": "^0.3.6",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"execa": "^9.6.1",
"eslint": "^10.1.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.0"
}
}