-
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) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 729 Bytes
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": "parallax-ai",
"version": "0.1.0",
"description": "Multi-agent collaboration gateway for one-person companies",
"type": "module",
"main": "dist/index.js",
"bin": {
"parallax": "dist/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@types/express": "^5.0.6",
"better-sqlite3": "^11.7.0",
"cron-parser": "^4.9.0",
"express": "^5.2.1",
"nanoid": "^5.0.9",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}