-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.35 KB
/
package.json
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
{
"name": "naisys",
"description": "Node.js Autonomous Intelligence System",
"version": "1.6.0",
"type": "module",
"main": "dist/naisys.js",
"preferGlobal": true,
"bin": {
"naisys": "bin/naisys"
},
"scripts": {
"compile/run/attachable": "tsc && node --inspect dist/naisys.js ./agents/solo-websites/webdev-fansite.yaml",
"agent:assistant": "node dist/naisys.js ./agents/assistant.yaml",
"agent:nightwatch": "node dist/naisys.js ./agents/nightwatch.yaml",
"clean": "rm -rf dist",
"compile": "tsc",
"eslint": "npx eslint --rulesdir eslint-rules src",
"test": "tsc && node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=dist/__tests__",
"prettier": "npx prettier --write .",
"dependency-graph": "madge --image dependency-graph.png dist",
"detect-cycles": "madge --circular dist",
"gen-tuning": "tsc && node dist/__fine-tuning__/gen-jsonl.js",
"updates:check": "npm-check-updates",
"updates:apply": "npm-check-updates -u && npm install",
"npm:publish:dryrun": "npm run clean && npm ci && npm run compile && npm publish --dry-run",
"postinstall": "node -e \"process.platform !== 'win32' && require('child_process').execSync('chmod +x ./bin/*')\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/swax/NAISYS.git"
},
"keywords": [
"ai",
"agent",
"automation",
"cli-tools",
"devops-tools",
"naisys"
],
"author": "John Marshall",
"license": "MIT",
"homepage": "https://naisys.org",
"devDependencies": {
"@types/escape-html": "1.0.4",
"@types/js-yaml": "4.0.9",
"@types/node": "22.4.2",
"@types/text-table": "0.2.5",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"eslint": "8.57.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"dependencies": {
"@anthropic-ai/sdk": "0.26.1",
"@google/generative-ai": "0.17.0",
"@xterm/headless": "5.5.0",
"chalk": "5.3.0",
"commander": "12.1.0",
"dotenv": "16.4.5",
"escape-html": "1.0.3",
"js-yaml": "4.1.0",
"openai": "4.56.0",
"sharp": "0.33.5",
"sqlite": "5.1.1",
"sqlite3": "5.1.7",
"strip-ansi": "7.1.0",
"text-table": "0.2.0",
"tiktoken": "1.0.16",
"tree-kill": "1.2.2",
"web-streams-polyfill": "^4.0.0"
}
}