-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 948 Bytes
/
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
{
"name": "diffusers-discord-bot",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:ainize-team/diffusers-discord-bot.git",
"scripts": {
"lint": "eslint --ext .ts .",
"build": "tsc",
"build:watch": "tsc --watch",
"deploy": "node tools/deploy-commands.js",
"start": "node dist/index.js"
},
"author": "YoungJae Kim <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.21.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@discordjs/builders": "^1.4.0",
"discord.js": "^14.7.1"
}
}