-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "prometheus-discord-bot",
"version": "0.2.0",
"description": "The Discord Bot for the Prometheus Obfuscator",
"main": "index.js",
"scripts": {
"build": "node esbuild.js",
"start": "node index.js",
"dev": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/levno-710/Prometheus-dicord-bot.git"
},
"keywords": [
"lua",
"obfuscator"
],
"author": "Elias Oelschner",
"license": "ISC",
"bugs": {
"url": "https://github.com/levno-710/Prometheus-dicord-bot/issues"
},
"homepage": "https://github.com/levno-710/Prometheus-dicord-bot#readme",
"devDependencies": {
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"esbuild": "^0.14.38",
"esbuild-node-externals": "^1.4.1",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@colors/colors": "^1.5.0",
"@types/tmp": "^0.2.3",
"@types/uuid": "^8.3.4",
"axios": "^0.27.2",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"tmp": "^0.2.1",
"uuid": "^8.3.2"
}
}