-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 760 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 760 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
{
"type": "module",
"scripts": {
"build": "tsc",
"build:bundle": "esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/bundle.cjs",
"build:linux": "tsx scripts/build-sea.ts",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"telegraf": "^4.16.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/ws": "^8.18.1",
"esbuild": "^0.27.2",
"postject": "^1.0.0-alpha.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}