-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.68 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
54
55
56
57
58
{
"name": "knub",
"version": "32.0.0-next.21",
"description": "A bot framework for Discord",
"author": "Miikka <[email protected]>",
"license": "MIT",
"scripts": {
"test": "npm run build-debug && mocha dist --recursive -r dist/testHooks.js --trace-uncaught",
"test-debug": "npm run build-debug && why-is-node-running ./node_modules/.bin/mocha dist --recursive",
"build-debug": "shx rm -rf dist && shx rm -f tsconfig.tsbuildinfo && tsc --sourceMap true",
"build": "shx rm -rf dist && shx rm -f tsconfig.tsbuildinfo && 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",
"biome-check": "biome check ./src",
"biome-fix": "biome check --apply ./src",
"prepare": "husky install"
},
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./helpers": {
"types": "./dist/helpers.d.ts",
"import": "./dist/helpers.js",
"require": "./dist/helpers.js"
}
},
"dependencies": {
"discord-api-types": "^0.37.67",
"discord.js": "^14.14.1",
"knub-command-manager": "^9.1.0",
"ts-essentials": "^9",
"zod": "^3.19.1"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/chai": "^4",
"@types/mocha": "^9",
"@types/node": "^16",
"chai": "^4",
"husky": "^8",
"mocha": "^10",
"shx": "^0.3.3",
"ts-node": "^10.9",
"typescript": "5.3",
"why-is-node-running": "^2.2.2"
},
"files": [
"/dist"
],
"engines": {
"node": ">=16"
}
}