-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.56 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 4.56 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
{
"name": "neoagent",
"version": "3.1.1-beta.17",
"description": "Self-hosted AI agent for long-running tasks, automation, messaging, device control, and local memory",
"license": "AGPL-3.0-only",
"main": "server/index.js",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"neoagent": "bin/neoagent.js"
},
"files": [
"bin",
"lib",
"runtime",
"server",
"extensions",
"flutter_app",
"docs",
"landing",
"com.neoagent.plist",
"LICENSE",
"README.md",
".env.example"
],
"scripts": {
"start": "node server/index.js",
"start:guest-agent": "node server/guest_agent.js",
"dev": "node --watch server/index.js",
"dev:backend": "./dev/backend.sh",
"dev:web": "./dev/web.sh",
"dev:stack": "./dev/stack.sh",
"dev:build": "./dev/build.sh",
"dev:test": "./dev/test.sh",
"docs:dev": "docusaurus start",
"docs:build": "docusaurus build",
"docs:preview": "docusaurus serve --dir build",
"flutter:run:web": "cd flutter_app && flutter run -d chrome --dart-define=NEOAGENT_WEB_BUILD_ID=$(node ../scripts/web_build_id.js)",
"flutter:build:web": "cd flutter_app && flutter build web --output ../server/public --dart-define=NEOAGENT_BACKEND_URL=${NEOAGENT_BACKEND_URL:-} --dart-define=NEOAGENT_WEB_BUILD_ID=$(node ../scripts/web_build_id.js)",
"manage": "node bin/neoagent.js",
"test": "npm run test:backend",
"test:unit": "node --test --test-reporter=spec test/backend/unit/*.test.js",
"test:integration": "node --test --test-reporter=spec test/integration/*.test.js",
"test:security": "node --test --test-reporter=spec test/security/*.test.js",
"test:contract": "node --test --test-reporter=spec test/contract/*.test.js",
"test:e2e": "node --test --test-reporter=spec test/e2e/*.test.js",
"test:ws": "node --test --test-reporter=spec test/websocket/*.test.js",
"test:backend": "npm run test:unit && npm run test:integration && npm run test:security && npm run test:contract && npm run test:e2e && npm run test:ws",
"test:load": "node test/load/auth_load.js",
"flutter:test": "cd flutter_app && flutter test ../test/flutter/unit ../test/flutter/widget",
"flutter:test:unit": "cd flutter_app && flutter test ../test/flutter/unit",
"flutter:test:widget": "cd flutter_app && flutter test ../test/flutter/widget",
"benchmark:setup": "node benchmark/cli.js setup",
"benchmark:run": "node benchmark/cli.js run",
"benchmark:report": "node benchmark/cli.js report",
"release": "npx semantic-release",
"audit:ci": "npm audit --omit=dev --audit-level=high"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NeoLabs-Systems/NeoAgent.git"
},
"bugs": {
"url": "https://github.com/NeoLabs-Systems/NeoAgent/issues"
},
"homepage": "https://github.com/NeoLabs-Systems/NeoAgent#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@google/generative-ai": "^0.24.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"@remotion/cli": "^4.0.459",
"@slidev/cli": "^52.15.2",
"@slidev/theme-default": "^0.25.0",
"baileys": "^6.7.21",
"bcrypt": "^6.0.0",
"better-sqlite3": "^11.8.1",
"better-sqlite3-session-store": "^0.1.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"discord.js": "^14.25.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"geoip-lite": "^1.4.10",
"googleapis": "^150.0.1",
"helmet": "^8.0.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"node-pty": "^1.0.0",
"nodemailer": "^8.0.5",
"openai": "^4.85.4",
"otplib": "^13.4.0",
"playwright-chromium": "^1.59.1",
"proper-lockfile": "^4.1.2",
"puppeteer-core": "^24.40.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"qrcode": "^1.5.4",
"remotion": "^4.0.459",
"sharp": "^0.34.5",
"socket.io": "^4.8.1",
"stripe": "^22.2.1",
"telegraf": "^4.16.3",
"telnyx": "^5.51.0",
"tesseract.js": "^7.0.0",
"uuid": "^11.1.0",
"ws": "^8.21.0"
},
"overrides": {
"axios": "^1.15.2",
"basic-ftp": "^5.3.0",
"follow-redirects": "^1.16.0",
"hono": "^4.12.14",
"protobufjs": "^7.5.5",
"serialize-javascript": "^7.0.5",
"undici": "^6.24.0",
"webpackbar": "^7.0.0",
"ws": "^8.21.0"
},
"devDependencies": {
"@docusaurus/core": "3.10.0",
"@docusaurus/preset-classic": "3.10.0",
"autocannon": "^7.15.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"socket.io-client": "^4.8.3",
"supertest": "^7.2.2"
}
}