-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
60 lines (60 loc) · 1.34 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
{
"author": "cakedan",
"bugs": {
"url": "https://github.com/detritusjs/client/issues"
},
"dependencies": {
"@types/node": "^14.17.2",
"@types/node-fetch": "^2.5.10",
"detritus-client-rest": "^0.10.5",
"detritus-client-socket": "^0.8.3",
"detritus-utils": "^0.4.0"
},
"description": "A Typescript NodeJS library to interact with Discord's API, both Rest and Gateway.",
"devDependencies": {
"typedoc": "^0.20.36",
"typescript": "4.2.x"
},
"files": [
"lib/**/*"
],
"homepage": "https://github.com/detritusjs/client#readme",
"keywords": [
"discord",
"full",
"library",
"nodejs",
"typescript"
],
"license": "BSD-2-Clause",
"main": "lib/index.js",
"name": "detritus-client",
"peerDependencies": {
"@discordjs/opus": "^0.4.0",
"node-opus": "^0.3.3",
"opusscript": "^0.0.7"
},
"peerDependenciesMeta": {
"@discordjs/opus": {
"optional": true
},
"node-opus": {
"optional": true
},
"opusscript": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/detritusjs/client.git"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"typedoc": "typedoc"
},
"types": "lib/index.d.ts",
"version": "0.16.3"
}