-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
80 lines (80 loc) · 1.82 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
{
"name": "rainlink",
"version": "1.2.7",
"description": "Another lavalink wrapper but focus on stability and rich features",
"repository": {
"type": "git",
"url": "https://github.com/RainyXeon/Rainlink.git"
},
"scripts": {
"build": "npx tsup-node",
"prettier": "npx prettier -w ./src",
"build:doc": "typedoc --options ./typedoc.json --sort kind",
"build:full": "npm run prettier && npm run build:eslint && npm run build && npm run build:doc",
"build:eslint": "npx eslint ./src --fix"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"keywords": [
"bot",
"music",
"lavalink.js",
"lavalink-api",
"discord.js",
"eris.js",
"oceanic.js",
"lavalink",
"wrapper",
"lavalink-wrapper",
"rainlink",
"bun"
],
"author": "RainyXeon",
"license": "GPL-3.0",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/bun": "^1.1.9",
"@types/node": "^22.5.4",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"discord.js": "^14.14.1",
"dokdo": "^1.0.1",
"dotenv": "^16.4.5",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"prettier": "^3.2.5",
"tsup": "^8.3.0",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"tsup": {
"dts": true,
"entry": [
"./src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"format": [
"cjs",
"esm"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}