forked from Dragory/Knub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 KB
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
{
"name": "vety",
"version": "1.0.0-rc2",
"description": "A bot framework for Discord",
"author": "Miikka <contact@mivir.fi>",
"license": "MIT",
"type": "module",
"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 && npm run biome-check",
"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 --write ./src",
"prepare": "husky"
},
"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.js": "=14.23.2",
"knub-command-manager": "^9.1.0",
"ts-essentials": "^10.0.4",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.18",
"chai": "^5.2.0",
"husky": "^9.1.7",
"mocha": "^11.4.0",
"shx": "^0.4.0",
"typescript": "^5.9.3",
"why-is-node-running": "^3.2.2"
},
"files": [
"/dist"
],
"engines": {
"node": ">=22"
}
}