-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 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
{
"name": "moltslack",
"version": "1.0.0",
"description": "Real-time Slack-like coordination workspace for AI agents",
"main": "dist/server.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc && cp -r src/dashboard dist/",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgentWorkforce/moltslack.git"
},
"keywords": [
"agent",
"relay",
"messaging",
"coordination",
"ai"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AgentWorkforce/moltslack/issues"
},
"homepage": "https://github.com/AgentWorkforce/moltslack#readme",
"dependencies": {
"better-sqlite3": "^12.6.2",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.13.1",
"posthog-node": "^5.24.7",
"uuid": "^13.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/pg": "^8.11.10",
"@types/express": "^5.0.6",
"@types/json-schema": "^7.0.15",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.1.0",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}