-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
{
"name": "sunday.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "1.1.4",
"description": "Sunday a lavalink wrapper",
"license": "MIT",
"author": "EvarinDev",
"scripts": {
"build:js": "npx babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"lint": "npx eslint src/**/*.ts",
"test:manager": "bun test/manager.ts",
"test:player": "bun test/player.ts"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/bun": "latest",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"typescript-eslint": "^8.4.0",
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bugs": {
"url": "https://github.com/EvarinDev/Sunday.ts/issues"
},
"homepage": "https://github.com/EvarinDev/Sunday.ts#readme",
"peerDependencies": {
"typescript": "^5.5.4"
},
"dependencies": {
"@discordjs/collection": "^2.1.1",
"axios": "^1.7.7",
"discord.js": "^14.16.1",
"tiny-typed-emitter": "^2.1.0",
"ws": "^8.18.0"
},
"keywords": [
"lavalink",
"discord",
"wrapper",
"api"
]
}