-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.33 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.33 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
{
"name": "@ai-in-pm/nemoclawd",
"version": "1.0.0",
"description": "Unified orchestrator for Clawdbot and NVIDIA NeMo Agent Toolkit",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:node": "node ./scripts/build-node.mjs",
"bootstrap:python": "node ./scripts/bootstrap-python.mjs",
"build:python": "node ./scripts/build-python.mjs",
"artifacts:collect": "node ./scripts/collect-artifacts.mjs",
"build:all": "pnpm run build && pnpm run build:node && pnpm run bootstrap:python && pnpm run build:python && pnpm run artifacts:collect",
"smoke:test": "pnpm run build && pnpm run bootstrap:python && node ./scripts/smoke-test.mjs",
"sor:verify": "node ./scripts/verify-system-of-record.mjs",
"sor:status": "pnpm run sor:verify && node -e \"const fs=require('fs');console.log(fs.readFileSync('./artifacts/system-of-record.status.json','utf8'));\"",
"start:clawdbot": "pnpm run sor:verify && node ./scripts/run-clawdbot-with-nemo.mjs",
"docker:build": "docker compose build",
"docker:up": "docker compose up nemoclawd"
},
"devDependencies": {
"@types/node": "^24.0.6",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.23.0"
}