-
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.13 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.13 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": "mcbot",
"version": "1.0.0",
"description": "このBOTはDiscord Slash CommandによってMinecraftサーバーの起動停止を管理する目的で作成されました. Google Cloud Functionsの認証あり呼び出しによってサーバーの起動停止が管理できる環境を想定しています. 従って, このプログラム自体は送信されたSlash Commandに対応するCloud Functionsを呼び出す以外に一切の副作用を持ちません. ",
"main": "index.js",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"node --loader ts-node/esm\" src/index.ts"
},
"author": "ExternalExte",
"type": "module",
"types": "index.d.ts",
"license": "ISC",
"dependencies": {
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"google-auth-library": "^8.8.0",
"rcon-client": "^4.2.3"
},
"devDependencies": {
"@types/node": "^18.15.5",
"depcheck": "^1.4.3",
"nodemon": "^2.0.21",
"npm-check-updates": "^16.7.13",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}