-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1019 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1019 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
{
"name": "msd_ai_telegram_bot",
"main": "./dist/index.js",
"module": "./src/index.ts",
"version": "1.1.0",
"license": "MIT",
"scripts": {
"start": "node .",
"bun:start": "bun src/index.ts",
"bun:smol": "bun --smol src/index.ts",
"bun:watch": "bun --watch src/index.ts",
"pm2:start": "pm2 start npm --ignore-watch=\"node_modules\" --name \"msdbot_ai_telegram\" -- start",
"pm2:bun_start": "pm2 start bun --ignore-watch=\"node_modules\" --name \"msdbot_ai_telegram\" -- bun:start",
"pm2:restart": "pm2 restart \"msdbot_ai_telegram\"",
"pm2:stop": "pm2 stop \"msdbot_ai_telegram\"",
"build": "bun build --entrypoint ./src/**.ts --compile --outfile dist/msdbot_ai_telegram --target bun-linux-x64",
"format": "prettier --write --cache './{.vscode,.github,src,test}/**/*.{mjs,ts,tsx,js,jsx,json,yml,yaml}'"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"grammy": "^1.38.3"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/node": "^24.8.1",
"prettier": "^3.6.2"
}
}