-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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": "damonjs",
"version": "2.1.8",
"preview": false,
"description": "A modified Shoukaku wrapper with enhanced queue support.",
"main": "dist/Index.js",
"types": "dist/Index.d.ts",
"homepage": "https://achiragaming.github.io/DamonJS/",
"bugs": {
"url": "https://github.com/achiragaming/DamonJs/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=16.5.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:full": "npm run lint && npm run format && npm run build:docs && npm run build",
"build": "tsc",
"format": "prettier --write \"src/**/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build:docs": "typedoc --readme README.md --out docs/ --entryPointStrategy expand src/."
},
"keywords": [
"lavalink",
"lavalink-client",
"shoukaku",
"kazagumo",
"lavalink-player",
"player",
"discord-player"
],
"author": "achira <[email protected]> (https://github.com/achiragaming)",
"files": [
"dist/**/**/*"
],
"license": "MIT",
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^18.11.9",
"@types/string-similarity": "^4.0.2",
"@types/ws": "^8.5.3",
"discord.js": "^14.6.0",
"prettier": "^2.7.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
},
"dependencies": {
"events": "^3.3.0",
"shoukaku": "^4.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/achiragaming/DamonJS.git"
},
"contributors": [
"AchiraGaming (https://github.com/achiragaming)"
],
"publishConfig": {
"access": "public"
},
"directories": {
"example": "examples"
}
}