forked from NVIDIA/NemoClaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.43 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 4.43 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$comment": "SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.\nSPDX-License-Identifier: Apache-2.0",
"name": "nemoclaw",
"version": "0.1.0",
"description": "NemoClaw — run OpenClaw inside OpenShell with NVIDIA inference",
"license": "Apache-2.0",
"bin": {
"nemoclaw": "./bin/nemoclaw.js",
"nemohermes": "./bin/nemohermes.js"
},
"oclif": {
"bin": "nemoclaw",
"commands": {
"strategy": "pattern",
"target": "./dist/commands"
},
"flexibleTaxonomy": true,
"topicSeparator": " "
},
"scripts": {
"preinstall": "node scripts/check-node-version.js",
"test": "vitest run",
"check": "npx prek run --all-files",
"checks": "tsx scripts/checks/run.ts",
"lint": "npx @biomejs/biome lint . && npm run checks",
"lint:fix": "npx @biomejs/biome lint --write . && npm run checks",
"lint:ts": "cd nemoclaw && npm run check",
"format": "npx @biomejs/biome format --write .",
"format:check": "npx @biomejs/biome format .",
"format:ts": "cd nemoclaw && npm run lint:fix && npm run format",
"check:installer-hash": "bash scripts/check-installer-hash.sh",
"typecheck": "tsc -p jsconfig.json",
"build:cli": "tsc -p tsconfig.src.json && node dist/lib/cli/generate-oclif-metadata-manifest.js && if find nemoclaw-blueprint/scripts -name '*.ts' -print -quit | grep -q .; then tsc -p nemoclaw-blueprint/tsconfig.json; fi",
"typecheck:cli": "tsc -p tsconfig.cli.json",
"validate:configs": "tsx scripts/validate-configs.ts",
"type-safety:hotspots": "tsx scripts/type-safety-hotspots.ts",
"source-shape:scan": "tsx scripts/find-source-shape-tests.ts --metrics",
"source-shape:check": "tsx scripts/find-source-shape-tests.ts --check",
"test-size:check": "tsx scripts/check-test-file-size-budget.ts",
"bump:version": "tsx scripts/bump-version.ts",
"release:plan": "tsx scripts/release-plan.ts",
"release:cut": "bash scripts/release-cut-tag.sh",
"release:wait-latest": "bash scripts/release-wait-latest.sh",
"release:notes-data": "tsx scripts/release-notes-data.ts",
"docs": "npm run docs:strict",
"docs:deps": "node -p \"require('./fern/fern.config.json').version\" | xargs -I {} npx --yes fern-api@{} --version",
"docs:sync-agent-variants": "tsx scripts/sync-agent-variant-docs.ts",
"docs:check-agent-variants": "tsx scripts/sync-agent-variant-docs.ts --check",
"docs:strict": "npm run docs:check-agent-variants && FERN_VERSION=$(node -p \"require('./fern/fern.config.json').version\") && cd fern && npx --yes \"fern-api@${FERN_VERSION}\" check",
"docs:live": "FERN_VERSION=$(node -p \"require('./fern/fern.config.json').version\") && cd fern && npx --yes \"fern-api@${FERN_VERSION}\" docs dev",
"docs:preview:watch": "tsx scripts/watch-fern-preview.ts",
"docs:clean": "rm -rf .fern-cache fern/.fern-cache docs/_build",
"prepare": "if command -v tsc >/dev/null 2>&1 || [ -x node_modules/.bin/tsc ]; then npm run build:cli; fi && (npm install --omit=dev --ignore-scripts 2>/dev/null || true) && if [ -d .git ]; then bash scripts/npm-link-or-shim.sh; if command -v prek >/dev/null 2>&1; then prek install; else echo \"Skipping git hook setup (prek not installed)\"; fi; fi",
"prepublishOnly": "git describe --tags --match 'v*' | sed 's/^v//' > .version && test -s .version && cd nemoclaw && env -u npm_config_global -u npm_config_prefix -u npm_config_omit npm install --ignore-scripts && ./node_modules/.bin/tsc"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "3.1046.0",
"@oclif/core": "^4.10.5",
"js-yaml": "^4.1.1",
"p-retry": "^4.6.2",
"qrcode-terminal": "^0.12.0",
"yaml": "^2.8.3"
},
"bundleDependencies": [
"p-retry"
],
"files": [
".version",
"bin/",
"dist/",
"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": {
"@biomejs/biome": "^2.4.14",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@earendil-works/pi-coding-agent": "0.74.0",
"@j178/prek": "^0.3.6",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.0",
"ajv": "^8.17.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.0"
}
}