forked from Dragory/Knub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "@chiruso/knub",
"version": "31.0.0",
"description": "A bot framework for Discord",
"author": "Miikka <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test-files": "mocha --exit -r ts-node/register",
"test": "mocha --exit -r ts-node/register \"src/**/*.test.ts\" -- --trace-warnings",
"test-debug": "mocha --exit -r ts-node/register -g \"command permissions\" \"src/**/*.test.ts\" -- --trace-warnings",
"lint": "eslint src",
"build": "shx touch dist && shx rm -r dist && tsc --sourceMap false && shx cp .npmignore dist/",
"preversion": "npm run test",
"prepublishOnly": "npm run test && npm run build",
"watch": "shx touch dist && shx rm -r dist && tsc --watch",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
]
},
"dependencies": {
"discord-api-types": "^0.37.10",
"discord.js": "^14",
"@chiruso/knub-command-manager": "^9.1.0",
"ts-essentials": "^9",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/chai": "^4",
"@types/mocha": "^9",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"chai": "^4",
"eslint": "^8",
"husky": "^8",
"lint-staged": "^13",
"mocha": "^10",
"prettier": "^2.3.0",
"shx": "^0.3.3",
"ts-node": "^10.9",
"typescript": "^4.9.2-rc"
},
"files": [
"/dist"
]
}