-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1 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
{
"name": "msd_github_bot",
"packageManager": "bun@1.2.6",
"module": "./src/index.ts",
"main": "./dist/index.js",
"type": "module",
"license": "MIT",
"private": true,
"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_github_bot\" -- start",
"pm2:bun_start": "pm2 start bun --ignore-watch=\"node_modules\" --name \"msdbot_github_bot\" -- bun:start",
"pm2:restart": "pm2 restart \"msdbot_github_bot\"",
"pm2:stop": "pm2 stop \"msdbot_github_bot\"",
"build": "bun build --entrypoint ./src/**.ts --outdir dist --target bun",
"format": "prettier --write --cache './{.vscode,.github,src,test}/**/*.{mjs,ts,tsx,js,jsx,json,yml,yaml}'"
},
"dependencies": {
"@roziscoding/grammy-autoquote": "^2.0.8",
"grammy": "^1.35.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "latest",
"typescript": "^5.8.2"
}
}