-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1017 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
33
34
35
36
37
{
"name": "nocli-handler.js",
"version": "1.1.3",
"description": "Next generation Discord.JS Handler for future Discord Bots",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"scripts": {
"build": "npx tsc",
"build:watch": "npx tsc -w --outDir dist --rootDir src --skipLibCheck",
"zip": "zip -r \"Source Code.zip\" . * -x node_modules/* @",
"docs:typedoc": "typedoc --out docs ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/tribui141108/nocli-handler.js"
},
"keywords": [
"command handler"
],
"author": "tribui141108",
"license": "Apache-2.0",
"dependencies": {
"@discordjs/collection": "^1.1.0",
"chalk": "^2.4.1",
"discord.js": "^14.6.0",
"mongoose": "^6.3.5",
"node-banner": "^1.4.0",
"typescript-documentation": "^3.0.2"
},
"devDependencies": {
"@types/node": "^17.0.38",
"eslint-plugin-tsdoc": "^0.2.17",
"ts-node": "^10.8.0",
"typedoc": "^0.23.14",
"typescript": "^4.7.2"
}
}