-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "sunday.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"version": "1.0.1-indev",
"description": "Sunday a lavalink wrapper",
"scripts": {
"build:js": "npx babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"lint": "npx x eslint src/**/*.ts",
"test:connect": "bun test/connect.ts",
"test:manager": "bun test/manager.ts",
"test:player": "bun test/player.ts"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/bun": "latest",
"eslint": "9.x",
"globals": "^15.8.0",
"typescript-eslint": "^7.16.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"peerDependencies": {
"typescript": "^5.5.3"
},
"dependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@discordjs/collection": "^2.1.0",
"axios": "^1.7.2",
"discord.js": "^14.15.3",
"tiny-typed-emitter": "^2.1.0",
"ws": "^8.18.0"
}
}