-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.93 KB
/
package.json
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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "dbm-german-bot",
"version": "3.1.1",
"description": "The official bot of the DBM German Discord server.",
"author": "DBM German",
"license": "Attribution-NonCommercial-ShareAlike 4.0 International",
"bugs": {
"url": "https://github.com/DBM-German/DBM-German-Bot/issues"
},
"homepage": "https://github.com/DBM-German/DBM-German-Bot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DBM-German/DBM-German-Bot.git"
},
"keywords": [
"discord-bot-maker",
"dbm",
"german",
"discord",
"bot"
],
"private": true,
"main": "bot/bot.js",
"type": "module",
"scripts": {
"start": "(cd bot) && (node bot.js)",
"setup": "(git submodule update --init) && (npm i) && (node utils/setup.js) && (node utils/to-dbm.js)",
"build": "(npm run setup) && (docker build --tag dbm-german-bot:3.1.1 .) && (docker save -o ./build/dbm-german-bot.tar dbm-german-bot:3.1.1)",
"build-arm": "(npm run setup) && (docker build --platform linux/arm/v7 --tag dbm-german-bot:3.1.1-arm -f Dockerfile.arm .) && (docker save -o ./build/dbm-german-bot_arm.tar dbm-german-bot:3.1.1-arm)",
"copy-code": "node utils/copy-code.js",
"copy-res": "node utils/copy-res.js",
"to-dbm": "node utils/to-dbm.js",
"to-raw": "node utils/to-raw.js",
"lint": "npx eslint ."
},
"dependencies": {
"dbm-types": "^0.3.0",
"regedit": "5.1.3",
"vdf-parser": "1.2"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-markdownlint": "^0.6.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-promise": "^7.2.1"
},
"engines": {
"node": "20",
"npm": "10",
"os": "win32"
},
"packageManager": "[email protected]"
}