-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
{
"name": "discord-command-registry",
"version": "3.1.1",
"description": "A structure for Discord.js slash commands that allow you to define, register, and execute slash commands all in one place.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=16.9.0"
},
"bin": {
"register": "./lib/src/register.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -r lib/*",
"prepack": "npm run clean && npm run build && npm test",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"test": "mocha test/*.test.ts",
"test:coverage": "nyc --reporter=text mocha test/*.test.ts"
},
"homepage": "https://www.npmjs.com/package/discord-command-registry",
"repository": {
"type": "git",
"url": "git+https://github.com/Mimickal/discordjs-command-registry.git"
},
"bugs": {
"url": "https://github.com/Mimickal/discordjs-command-registry/issues"
},
"keywords": [
"discord.js",
"discord",
"slash",
"command",
"registry",
"library"
],
"files": [
"lib/*",
"src/register.ts"
],
"author": "Mimickal <[email protected]>",
"license": "LGPL-3.0",
"peerDependencies": {
"@discordjs/builders": "^1.1.0",
"discord.js": "^14"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ts-mixer": "^6.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@sapphire/shapeshift": "^3.9.0",
"commander": "^10.0.1"
}
}