-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.44 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.44 KB
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
{
"name": "detritus-client-socket",
"version": "0.8.3",
"description": "A TypeScript NodeJS library to interact with Discord's Gateway",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"dependencies": {
"@types/node": "^14.17.1",
"detritus-utils": "^0.4.0",
"ws": "^7.4.6"
},
"devDependencies": {
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"peerDependencies": {
"erlpack": "^0.1.3",
"libsodium-wrappers": "^0.7.8",
"pako": "^1.0.11",
"sodium": "^3.0.2",
"tweetnacl": "^1.0.3",
"uws": "10.148.1"
},
"peerDependenciesMeta": {
"erlpack": {
"optional": true
},
"libsodium-wrappers": {
"optional": true
},
"pako": {
"optional": true
},
"sodium": {
"optional": true
},
"tweetnacl": {
"optional": true
},
"uws": {
"optional": true
}
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"typedoc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/detritusjs/client-socket.git"
},
"keywords": [
"discord",
"gateway",
"library",
"nodejs",
"typescript"
],
"author": "cakedan",
"license": "MIT",
"bugs": {
"url": "https://github.com/detritusjs/client-socket/issues"
},
"homepage": "https://github.com/detritusjs/client-socket#readme"
}