-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 912 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 912 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
{
"name": "steam-hours-bot",
"packageManager": "bun@1.3.3",
"module": "./src/index.ts",
"main": "./dist/index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "node .",
"build": "bun build --entrypoint ./src/**.ts --outdir=dist --target=bun",
"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 \"steam_hours_bot\" -- start",
"pm2:bun_start": "pm2 start bun --ignore-watch=\"node_modules\" --name \"steam_hours_bot\" -- bun:start",
"pm2:restart": "pm2 restart \"steam_hours_bot\"",
"pm2:stop": "pm2 stop \"steam_hours_bot\""
},
"dependencies": {
"steam-totp": "^2.1.2",
"steam-user": "^3.7.2"
},
"devDependencies": {
"@types/node": "latest",
"@types/steam-totp": "^2.1.2",
"@types/steam-user": "^5.0.4",
"prettier": "^3.5.3"
}
}