-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.31 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": "@d3oxy/djs-commands",
"repository": {
"type": "git",
"url": "https://github.com/D3OXY/djs-commands"
},
"publishConfig": {
"access": "public"
},
"version": "1.4.10",
"main": "./dist/index.js",
"typings": "./typings.d.ts",
"files": [
"dist",
"typings.d.ts",
"README.md",
"CHANGELOG.md"
],
"description": "A feature rich command handler for discord.js",
"scripts": {
"build": "tsc --outDir dist --rootDir src --skipLibCheck",
"lint": "tsc",
"dev": "tsc -w --outDir dist --rootDir src --skipLibCheck",
"release": "rm -rf dist && pnpm run lint && pnpm run build && changeset publish",
"link:dev": "pnpm link --global"
},
"keywords": [
"discord.js",
"discord",
"bot",
"commands",
"command handler",
"types",
"utility",
"tool",
"library",
"module",
"automation"
],
"author": "D3OXY, deoxy.dev",
"license": "ISC",
"bugs": {
"url": "https://github.com/D3OXY/djs-commands/issues"
},
"homepage": "https://djscommands.deoxy.dev",
"dependencies": {
"chalk": "4.1.2",
"discord.js": "^14.13.0",
"mongoose": "^7.5.2",
"validate-color": "^2.2.4"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"bun-types": "^1.0.3"
}
}