naisys
Version:
NAISYS - Autonomous AI agent runner with built-in context management and cost tracking
98 lines (97 loc) • 2.63 kB
JSON
{
"name": "naisys",
"description": "NAISYS - Autonomous AI agent runner with built-in context management and cost tracking",
"version": "3.0.3",
"type": "module",
"main": "dist/naisys.js",
"preferGlobal": true,
"bin": {
"naisys": "bin/naisys.js"
},
"files": [
"npm-shrinkwrap.json",
"dist",
"bin",
".env.example",
".env.hub-client.example",
"!dist/**/*.map",
"!dist/**/*.d.ts",
"!dist/**/*.d.ts.map",
"!dist/__tests__"
],
"scripts": {
"build/run/attachable": "tsc && node --inspect dist/naisys.js ../../agents/assistant.yaml --supervisor",
"agent:assistant": "node dist/naisys.js ../../agents/assistant.yaml --integrated-hub --supervisor --erp",
"agent:scdb:program-director": "cd ../../agents/scdb && node ../../apps/naisys/dist/naisys.js program-director.yaml",
"clean": "npx rimraf dist",
"build": "tsc",
"eslint": "npx eslint src",
"test": "vitest run",
"npm:publish:dryrun": "npm publish --dry-run",
"npm:publish": "npm publish",
"postinstall": "node ./bin/postinstall.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swax/NAISYS.git",
"directory": "apps/naisys"
},
"keywords": [
"ai",
"agent",
"automation",
"cli-tools",
"devops-tools",
"naisys"
],
"author": "John Marshall",
"license": "MIT",
"homepage": "https://naisys.org",
"devDependencies": {
"@naisys/hub-database": "3.0.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.1",
"@types/text-table": "^0.2.5",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^10.4.0",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"peerDependencies": {
"@naisys/hub": "3.0.3"
},
"peerDependenciesMeta": {
"@naisys/hub": {
"optional": true
}
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.98.0",
"@google/genai": "^2.6.0",
"@naisys/common": "3.0.3",
"@naisys/common-node": "3.0.3",
"@naisys/hub-protocol": "3.0.3",
"@xterm/headless": "^6.0.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"js-yaml": "^4.1.1",
"openai": "^6.39.0",
"playwright-core": "^1.60.0",
"sharp": "^0.34.5",
"socket.io-client": "^4.8.3",
"string-argv": "^0.3.2",
"strip-ansi": "^7.2.0",
"text-table": "^0.2.0",
"tiktoken": "^1.0.22",
"tree-kill": "^1.2.2"
}
}