-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "gluon",
"version": "2.0.1",
"description": "Discord API library for Quark",
"keywords": [
"discord",
"api",
"library",
"quark"
],
"exports": {
"./constants": {
"types": "./dist/constants.d.ts",
"default": "./src/constants.js"
},
"./util": {
"types": "./dist/util.d.ts",
"default": "./src/util.js"
},
"./structures": {
"types": "./dist/structures.d.ts",
"default": "./src/structures.js"
},
"./compiledStructures": {
"types": "./dist/compiledStructures.d.ts",
"default": "./src/compiledStructures.js"
},
"./testData": {
"types": "./dist/testData.d.ts",
"default": "./src/testData.js"
},
".": {
"types": "./dist/index.d.ts",
"default": "./index.js"
}
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "mocha \"test/**/*.js\" --file test/setup.js",
"example": "node ./example/bot.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quark-bot-discord/gluon.git"
},
"type": "module",
"author": "Starman",
"license": "MIT",
"bugs": {
"url": "https://github.com/quark-bot-discord/gluon/issues",
"email": "bugs.gluon@quark.bot"
},
"homepage": "https://gluon.quark.bot",
"dependencies": {
"bufferutil": "^4.0.8",
"erlpack": "github:quark-bot-discord/erlpack",
"fastq": "^1.17.1",
"form-data": "^4.0.0",
"hash.js": "^1.1.7",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"tiny-typed-emitter": "^2.1.0",
"ws": "^8.18.0",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"chai-spies": "^1.1.0",
"chalk": "^5.3.0",
"clean-jsdoc-theme": "^4.3.0",
"eslint": "^9.8.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"mocha": "^10.6.0",
"msw": "^2.3.4",
"prettier": "3.3.3",
"sinon": "^18.0.0",
"sinon-chai": "^4.0.0",
"typescript": "^5.6.2"
},
"script": {
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}