-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
98 lines (98 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
92
93
94
95
96
97
98
{
"name": "@projectdysnomia/dysnomia",
"version": "0.2.1",
"description": "A fork of Eris focused on keeping up with the latest Discord API changes.",
"main": "./index.js",
"exports": {
".": [
{
"require": "./index.js",
"import": "./esm.mjs"
},
"./index.js"
],
"./*": "./*",
"./esm": "./esm.mjs"
},
"typings": "./index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix && echo \"\u001b[1m\u001b[32mOK\u001b[39m\u001b[22m\" || echo \"\u001b[1m\u001b[31mNot OK\u001b[39m\u001b[22m\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/projectdysnomia/dysnomia.git"
},
"keywords": [
"api",
"discord",
"discordapp",
"dysnomia",
"eris",
"wrapper"
],
"author": "Project Dysnomia Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/projectdysnomia/dysnomia/issues"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/node": "^18.19.64",
"@types/ws": "^8.5.13",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-sort-class-members": "^1.21.0",
"globals": "^15.12.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"optionalDependencies": {
"@stablelib/xchacha20poly1305": "~1.0.1",
"opusscript": "^0.1.1"
},
"browser": {
"@discordjs/opus": false,
"child_process": false,
"dgram": false,
"dns": false,
"fs": false,
"tls": false,
"ws": false
},
"peerDependencies": {
"@discordjs/opus": "^0.9.0",
"erlpack": "github:discord/erlpack",
"eventemitter3": "^5.0.1",
"pako": "^2.1.0",
"sodium-native": "^4.1.1",
"zlib-sync": "^0.1.9"
},
"peerDependenciesMeta": {
"@discordjs/opus": {
"optional": true
},
"eventemitter3": {
"optional": true
},
"erlpack": {
"optional": true
},
"pako": {
"optional": true
},
"sodium-native": {
"optional": true
},
"zlib-sync": {
"optional": true
}
}
}