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
146 lines (146 loc) · 9.71 KB
/
Copy pathpackage.json
File metadata and controls
146 lines (146 loc) · 9.71 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"$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",
"nemo-deepagents": "./bin/nemoclaw.js"
},
"oclif": {
"bin": "nemoclaw",
"commands": {
"strategy": "pattern",
"target": "./dist/commands"
},
"flexibleTaxonomy": true,
"topicSeparator": " "
},
"scripts": {
"preinstall": "node scripts/check-node-version.js",
"dev:setup": "bash scripts/dev-setup.sh",
"dev:doctor": "bash scripts/dev-setup.sh --doctor",
"agent": "pi",
"test": "npm run clean:cli && npm --prefix nemoclaw run clean && npm run build:cli && npm --prefix nemoclaw run build && vitest run --project cli --project integration --project installer-integration --project package-contract --project plugin --project e2e-support",
"test:spec": "npm test -- --reporter=tree",
"test:fast": "npm run clean:cli && vitest run --project cli --project plugin --project e2e-support",
"test:changed": "vitest run --changed --project cli --project plugin --project e2e-support",
"test:watch": "vitest watch --project cli --project plugin --project e2e-support",
"test:shuffle": "vitest run --project cli --project plugin --project e2e-support --sequence.shuffle.tests --coverage=false",
"test:diagnose:leaks": "vitest run --project cli --project plugin --project e2e-support --detectAsyncLeaks --coverage=false --reporter=default --reporter=hanging-process",
"test:e2e-phases:check": "npm run build:policy-boundary && node --experimental-strip-types --no-warnings tools/e2e/check-semantic-phases.mts",
"test:runtime-audit": "tsx scripts/audit-test-runtime.mts",
"test:integration": "npm run clean:cli && npm run build:cli && vitest run --project integration --project installer-integration",
"test:package": "npm run clean:cli && npm --prefix nemoclaw run clean && npm run build:cli && npm --prefix nemoclaw run build && vitest run --project package-contract",
"test:coverage:cli": "npm run clean:cli && npm run build:cli && tsx scripts/check-dist-sourcemaps.mts dist && vitest run --project cli --project integration --coverage --coverage.reporter=text-summary --coverage.reporter=json-summary --coverage.reportsDirectory=coverage/cli --coverage.include=\"bin/**/*.js\" --coverage.include=\"src/**/*.ts\" --coverage.exclude=\"test/**/*.js\" --coverage.exclude=\"test/**/*.ts\" && tsx scripts/check-coverage-ratchet.mts coverage/cli/coverage-summary.json ci/coverage-threshold-cli.json \"CLI coverage\"",
"test:coverage:plugin": "vitest run --project plugin --coverage --coverage.reporter=text-summary --coverage.reporter=json-summary --coverage.reportsDirectory=coverage/plugin --coverage.include=\"nemoclaw/src/**/*.ts\" --coverage.include=\"nemoclaw/src/**/*.cts\" --coverage.exclude=\"**/*.test.ts\" && tsx scripts/check-coverage-ratchet.mts coverage/plugin/coverage-summary.json ci/coverage-threshold-plugin.json \"Plugin coverage\"",
"test:live-e2e": "npm run clean:cli && npm run build:cli && NEMOCLAW_RUN_LIVE_E2E=1 vitest run --project e2e-live",
"test:imports:check": "tsx scripts/checks/no-test-dist-imports.mts",
"test:projects:check": "tsx scripts/checks/vitest-project-overlap.mts",
"test:titles:check": "tsx scripts/checks/test-title-style.mts",
"bench": "tsx scripts/bench/run.mts",
"check": "npx prek run --all-files --stage pre-commit && npx prek run --all-files --stage manual",
"validate:pr": "npx prek run --from-ref origin/main --to-ref HEAD --stage pre-commit && npx commitlint --from origin/main --to HEAD && npx prek run --from-ref origin/main --to-ref HEAD --stage pre-push",
"check:diff": "npm run validate:pr",
"checks:repository": "tsx scripts/checks/run.mts",
"checks": "node -e \"console.error('npm run checks runs only narrow repository checks. Use npm run validate:pr for routine PR validation or npm run checks:repository for the narrow runner.')\" && npm run checks:repository",
"lint": "npx @biomejs/biome lint . && npm run checks:repository",
"lint:fix": "npx @biomejs/biome lint --write . && npm run checks:repository",
"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:policy-boundary": "tsc -p nemoclaw/tsconfig.shared.json",
"build:cli": "npm run build:policy-boundary && tsc -p tsconfig.src.json && node dist/lib/core/generate-build-identity.js && 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",
"clean:cli": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"typecheck:cli": "tsc -p tsconfig.cli.json",
"validate:configs": "tsx scripts/validate-configs.mts",
"type-safety:hotspots": "tsx scripts/type-safety-hotspots.mts",
"source-shape:scan": "tsx scripts/find-source-shape-tests.mts --metrics",
"source-shape:check": "tsx scripts/find-source-shape-tests.mts --check",
"test-size:check": "tsx scripts/check-test-file-size-budget.mts",
"test-conditionals:scan": "tsx scripts/find-test-conditionals.mts",
"bump:version": "tsx scripts/bump-version.mts",
"release:plan": "tsx scripts/release-plan.mts",
"release:e2e-evidence": "node --experimental-strip-types --no-warnings .agents/skills/nemoclaw-maintainer-cut-release-tag/scripts/release-e2e-evidence.mts",
"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.mts",
"docs": "npm run docs:strict",
"docs:deps": "node -p \"require('./fern/fern.config.json').version\" | xargs -I {} npx --yes fern-api@{} --version",
"docs:sync-starter-prompt": "tsx scripts/generate-starter-prompt.mts",
"docs:check-starter-prompt": "tsx scripts/generate-starter-prompt.mts --check",
"docs:prepare": "npm run docs:sync-starter-prompt && tsx scripts/sync-agent-variant-docs.mts",
"docs:sync-agent-variants": "npm run docs:prepare",
"docs:check-agent-variants": "tsx scripts/sync-agent-variant-docs.mts --check",
"docs:check-routes": "tsx scripts/check-docs-published-routes.mts",
"docs-review:check": "node --experimental-strip-types --no-warnings scripts/docs-review-receipt.mts check",
"docs-review:report": "node --experimental-strip-types --no-warnings scripts/docs-review-receipt.mts report",
"docs:validate": "npm run docs:check-starter-prompt && npm run docs:check-agent-variants && npm run docs:check-routes && FERN_VERSION=$(node -p \"require('./fern/fern.config.json').version\") && cd fern && npx --yes \"fern-api@${FERN_VERSION}\" check",
"docs:strict": "npm run docs:prepare && npm run docs:validate",
"docs:live": "npm run docs:prepare && 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.mts",
"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 && (node -e \"require.resolve('p-retry')\" >/dev/null 2>&1 || npm install --omit=dev --ignore-scripts) && 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 && git rev-parse --verify HEAD > .source-revision && test -s .version && test -s .source-revision && cd nemoclaw && env -u npm_config_global -u npm_config_prefix -u npm_config_omit npm install --ignore-scripts && ./node_modules/.bin/tsc",
"typecheck:scorecard": "tsc --noEmit --types node --strict --allowImportingTsExtensions --module preserve --moduleResolution bundler scripts/scorecard/coordinate-scorecard.mts scripts/scorecard/analyze-trace-timing.mts"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "3.1046.0",
"@oclif/core": "^4.10.5",
"ajv": "^8.17.0",
"execa": "^9.6.1",
"js-yaml": "^4.1.1",
"p-retry": "^4.6.2",
"qrcode-terminal": "^0.12.0",
"smol-toml": "1.7.0",
"undici": "8.5.0",
"yaml": "2.8.3"
},
"bundleDependencies": [
"p-retry"
],
"files": [
".version",
".source-revision",
"agents/hermes/host/",
"bin/",
"dist/",
"src/lib/messaging/channels/**/policy/*.{yaml,yml}",
"nemoclaw/dist/",
"nemoclaw/openclaw.plugin.json",
"nemoclaw/package.json",
"nemoclaw-blueprint/",
"schemas/network-policy.schema.json",
"schemas/sandbox-policy.schema.json",
"scripts/",
"docs/resources/local-credential-form.html",
"Dockerfile",
".dockerignore"
],
"engines": {
"node": ">=22.19.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.80.6",
"@j178/prek": "^0.3.6",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.0",
"fast-check": "^4.8.0",
"tsx": "^4.21.0",
"typebox": "1.1.38",
"typescript": "6.0.3",
"vitest": "^4.1.9"
}
}