-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"displayName": "HalfBot",
"name": "@disqada/halfbot",
"version": "4.1.0",
"description": "A tool to facilitate and accelerate the development of Discord bots",
"scripts": {
"format": "prettier . --write --ignore-path .gitignore",
"test": "mocha ./test/**/*.test.js"
},
"type": "module",
"main": "./src/exports.js",
"types": "./types/exports.d.ts",
"exports": {
".": {
"import": "./src/exports.js",
"default": "./src/exports.js",
"types": "./types/exports.d.ts"
}
},
"files": [
"src",
"types",
"LICENSE",
"*.md"
],
"homepage": "https://disqada.github.io/HalfBot",
"repository": "github:DisQada/HalfBot",
"bugs": {
"url": "https://github.com/DisQada/HalfBot/issues"
},
"keywords": [
"discord.js",
"discord",
"half",
"bot",
"client"
],
"author": "DisQada <[email protected]> (https://links.disqada.org)",
"contributors": [],
"license": "Apache-2.0",
"dependencies": {
"@disqada/pathfinder": "^3.0.0",
"discord.js": "^14.16.1",
"table": "^6.8.2"
},
"devDependencies": {
"@disqada/workspace": "^1.6.2",
"mocha": "^10.7.3",
"prettier": "^3.3.3"
}
}