-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.71 KB
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
{
"name": "hoshimi",
"version": "0.5.5",
"description": "A lavalink@v4 client easy to use, up-to-date and all ears.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"packageManager": "pnpm@11.24.0+sha512.bd27e345e976dcb0be0b7a1228217b049a817e21b1f355c90dbe7dc46671895a8bc1e6d06c24554505ea93ea0b45f489a27ec1bfbc8de6a9659fca0f16fa0000",
"exports": {
".": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"lint-staged": {
"*.{ts,json}": [
"pnpm format"
]
},
"repository": {
"url": "https://github.com/Ganyu-Studios/Hoshimi.git",
"type": "git"
},
"scripts": {
"build": "pnpm typecheck && tsdown",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "biome lint .",
"format": "biome format --write .",
"prepare": "husky && pnpm build"
},
"keywords": [
"discord",
"lavalink",
"lavalink-v4",
"discord",
"distube",
"music-bot",
"lavalink-player",
"lavalink-client",
"music"
],
"author": "Ganyu Studios",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@types/node": "^26.4.0",
"@types/ws": "^8.18.1",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"tsdown": "^0.22.14",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
},
"dependencies": {
"ws": "^8.21.3"
}
}