-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "discord-express",
"version": "0.0.0-a1",
"description": "DiscordJS reimagined: seamlessly integrate slash and message commands with the pluggable, middleware-based Discord bot framework inspiried by ExpressJS. ",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Luke-zhang-04/DeStagnate"
},
"author": "Luke Zhang <luke_zhang_04@protonmail.com>",
"homepage": "https://github.com/Luke-zhang-04/discord-express#readme",
"bugs": {
"url": "https://github.com/Luke-zhang-04/DeStagnate/issues"
},
"main": "./cjs/index.js",
"module": "./index.js",
"type": "module",
"engines": {
"node": ">=16.6"
},
"scripts": {
"build:prod": "./build.sh",
"generateDocs": "typedoc --options typedoc.cjs",
"lint": "eslint --ext ts src __mocks__ __tests__ --max-warnings 0",
"test": "node --experimental-vm-modules --es-module-specifier-resolution=node node_modules/jest/bin/jest.js"
},
"keywords": [
"discord-js",
"discord-bot-framework",
"discord-js-framework",
"discord-js-v13",
"slash-commands-handler",
"message-commands",
"slash-commands"
],
"peerDependencies": {
"@types/node": ">=12",
"discord.js": "^13.6.0"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
"discord.js": {
"optional": false
}
},
"dependencies": {
"@luke-zhang-04/utils": "github:luke-zhang-04/utils#semver:^2.0.1",
"case": "^1.6.3",
"discord-api-types": "^0.26.1",
"node-fetch": "^3.2.0",
"string-argv": "^0.3.1",
"zod": "^3.11.6"
},
"devDependencies": {
"@discordjs/builders": "^0.12.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"discord.js": "^13.6.0",
"dotenv": "^14.3.2",
"eslint": "^8.7.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"prettier-plugin-jsdoc": "^0.3.30",
"prettier-plugin-package": "^1.3.0",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.12",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.5.5"
}
}