-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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": "discord-debug",
"version": "2.1.2",
"description": "A simple discord.js debugging tool",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"dist/**/*.ps1",
"dist/*.js",
"dist/*.d.ts",
"dist/*.js.map",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"format": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dqrshan/discord-debug.git"
},
"keywords": [
"discord-debug",
"debugger",
"discord.js"
],
"author": {
"name": "Darshan",
"email": "darshan@disroot.org",
"url": "https://darshan.studio/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Dqrshan/discord-debug/issues"
},
"homepage": "https://github.com/Dqrshan/discord-debug#readme",
"devDependencies": {
"@types/node-fetch": "2.6",
"typescript": "^5.1.3"
},
"dependencies": {
"ascii-table3": "^0.8.2",
"discord.js": "^14.11.0",
"discordjs-docs-parser": "^1.3.2",
"mysql2": "^3.4.2",
"node-fetch": "2.6"
},
"engines": {
"node": ">=16.9.0"
}
}