-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.98 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
56
{
"name": "harmony",
"version": "1.0.0",
"description": "A Discord bot for miscellaneous server management tasks.",
"main": "dist/bot.js",
"scripts": {
"build": "npm run lint && tsc",
"debug": "npm run build && npm run watch-debug",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"run-debug": "nodemon --inspect dist/bot.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon --ignore data-store.json dist/bot.js",
"watch-ts": "tsc -w",
"deploy": "npm run build && node dist/deploy.js",
"deploy-debug": "npm run build && nodemon --inspect dist/deploy.js",
"deploy-run": "npm run deploy && node dist/bot.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/17thshard/harmony.git"
},
"keywords": [
"discord",
"bot"
],
"author": "Marvin Rösch",
"license": "MIT",
"bugs": {
"url": "https://github.com/17thshard/harmony/issues"
},
"homepage": "https://github.com/17thshard/harmony#readme",
"dependencies": {
"@discordjs/builders": "^1.8.2",
"discord-api-types": "^0.37.92",
"discord.js": "^14.15.3",
"keyv": "^4.5.4",
"keyv-file": "^0.2.0",
"node-interval-tree": "^1.3.3",
"simple-markdown": "^0.7.3",
"utf-8-validate": "^5.0.10",
"winston": "^3.13.1",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@types/core-js": "^2.5.8",
"@types/keyv": "^3.1.4",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"concurrently": "^6.5.1",
"eslint": "^8.57.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}