-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "steve-mc-discord",
"version": "5.2.0",
"description": "A Discord bot for Minecraft players",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"start": "node .",
"build": "node ./scripts/distributeAssets.js && tsc",
"register-prod": "node --input-type=module -e \"import {register} from './scripts/registerSlashCommands.js';register(true, true);\"",
"register-dev": "node --input-type=module -e \"import {register} from './scripts/registerSlashCommands.js';register(true, false);\"",
"production": "cross-env NODE_ENV=production npm start",
"development": "cross-env NODE_ENV=development npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathanlytang/Steve.git"
},
"author": "Nathan Tang",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathanlytang/Steve/issues"
},
"homepage": "https://github.com/nathanlytang/Steve#readme",
"dependencies": {
"@discordjs/builders": "^1.13.0",
"@discordjs/rest": "^2.6.0",
"cross-env": "^10.1.0",
"discord-api-types": "^0.38.31",
"discord.js": "^14.24.0",
"dotenv": "^17.2.3",
"log2discord": "^1.1.1",
"mariadb": "^3.4.5",
"mcping-js": "^1.5.0",
"mcquery": "^1.0.3"
},
"devDependencies": {
"@types/node": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"typescript": "^5.9.3"
}
}