-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "poru",
"version": "5.2.0",
"description": "A stable and powerful lavalink client around node.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && npm run build:esm",
"build:esm": "gen-esm-wrapper dist/index.js dist/index.mjs",
"prepublishOnly": "npm run build:esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parasop/poru.git"
},
"author": "PARAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/parasop/poru/issues"
},
"homepage": "https://github.com/parasop/poru#readme",
"dependencies": {
"gen-esm-wrapper": "^1.1.3",
"ws": "^8.16.0"
},
"engines": {
"node": ">=16.9.0"
},
"keywords": [
"music",
"lavalink",
"poru",
"bot",
"spotify",
"apple-music",
"soundcloud",
"deezer",
"discordjs",
"eris"
],
"devDependencies": {
"@types/node": "^20.12.7",
"@types/ws": "^8.5.10",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1"
}
}