-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.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
{
"name": "agent",
"version": "1.0.0",
"description": "Nixopus Agent",
"main": "index.js",
"scripts": {
"prepare": "husky",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:watch": "vitest",
"dev": "tsx scripts/dev.js",
"build": "mastra build --dir src/engine",
"start": "mastra start",
"bootstrap:e2e-fixtures": "tsx scripts/bootstrap-e2e-fixtures.ts"
},
"keywords": [
"nixopus",
"agent"
],
"author": "Nixopus",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=22.13.0"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@ai-sdk/google": "^3.0.54",
"@ai-sdk/openai": "^3.0.49",
"@hey-api/client-fetch": "^0.13.1",
"@mastra/ai-sdk": "^1.0.0",
"@mastra/core": "^1.13.2",
"@mastra/loggers": "^1.0.0",
"@mastra/memory": "^1.0.0",
"@mastra/observability": "^1.0.0",
"@mastra/pg": "^1.0.0",
"@mastra/s3": "^0.2.1",
"@nixopus/api-client": "0.0.14",
"@openrouter/ai-sdk-provider": "^2.3.0",
"@toon-format/toon": "^2.1.0",
"ai": "^6.0.97",
"bufferutil": "^4.1.0",
"bullmq": "^5.71.0",
"drizzle-orm": "^0.45.1",
"ioredis": "^5.10.0",
"jose": "^6.2.2",
"pg": "^8.17.1",
"rsdi": "^3.0.4",
"ssh2": "^1.17.0",
"utf-8-validate": "^6.0.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@tanstack/react-query": "^5.75.0",
"@types/node": "^25.0.3",
"@types/pg": "^8.11.10",
"@types/ssh2": "^1.15.5",
"husky": "^9.1.7",
"mastra": "^1.0.0",
"react": "^19.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}