-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "daik",
"version": "1.0.0",
"description": "discord.js command handler library",
"exports": {
".": "./build/index.js",
"./plugins": "./build/plugin/plugins/index.js",
"./responses": "./build/response/index.js"
},
"main": "build/index.js",
"author": "Luyx",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/LuyxDevelopment/Daik/issues"
},
"homepage": "https://github.com/LuyxDevelopment/Daik#readme",
"devDependencies": {
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@discordjs/builders": "^0.15.0",
"@discordjs/rest": "^0.5.0",
"discord-api-types": "^0.36.1",
"discord.js": "^13.8.1",
"dotenv": "^16.0.1",
"tiny-typed-emitter": "^2.1.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint --cache --fix",
"start": "npm run lint && npm run build && node build/index.js",
"check": "npm run lint && tsc --noEmit",
"preinstall": "npm run build"
}
}