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
60 lines (60 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.53 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
58
59
60
{
"name": "vety",
"version": "1.0.0-rc2",
"description": "A bot framework for Discord",
"author": "Miikka <contact@mivir.fi>",
"license": "MIT",
"type": "module",
"scripts": {
"test": "node --test 'src/**/*.test.ts'",
"test:debug": "node --import why-is-node-running/include --test 'src/**/*.test.ts'",
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && rm -f tsconfig.tsbuildinfo && tsc --sourceMap false && cp .npmignore dist/",
"preversion": "pnpm run test && pnpm run lint && pnpm run format:check",
"prepublishOnly": "pnpm run test && pnpm run build",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"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": {
"@types/node": "^24.13.3",
"oxfmt": "^0.61.0",
"oxlint": "^1.76.0",
"typescript": "^7.0.2",
"why-is-node-running": "^3.2.2"
},
"files": [
"/dist"
],
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.19.0",
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.0.0",
"onFail": "download"
}
}
}