-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 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
65
66
67
68
69
70
{
"name": "hoshimi",
"version": "0.3.9",
"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@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8",
"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.4.14",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsdown": "^0.21.10",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"ws": "^8.20.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}