-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.59 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
{
"name": "@thesharks/tyr",
"version": "2.1.2",
"description": "Library-agnostic and lightweight Lavalink implementation",
"main": "dist/index.js",
"scripts": {
"test": "eslint src/**/*.ts",
"prepack": "tsc",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheSharks/Tyr.git"
},
"exports": {
".": "./dist/index.js",
"./eris": "./dist/eris.js"
},
"files": [
"dist/**/*"
],
"keywords": [
"lavalink",
"wildbeast",
"thesharks"
],
"author": "Remco Jongschaap <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheSharks/Tyr/issues"
},
"homepage": "https://github.com/TheSharks/Tyr#readme",
"funding": {
"url": "https://github.com/sponsors/Dougley"
},
"devDependencies": {
"@lavaclient/types": "^2.0.8",
"@types/node": "^16.3.2",
"@types/node-fetch": "^2.5.11",
"@types/ws": "^7.4.6",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"typedoc": "^0.21.4",
"typescript": "^4.3.5"
},
"dependencies": {
"node-fetch": "^2.6.1",
"ws": "^7.5.3"
},
"engines": {
"node": ">=14"
},
"peerDependencies": {
"eris": "^0.15.1"
},
"peerDependenciesMeta": {
"eris": {
"optional": true
}
}
}