-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.87 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.87 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
71
72
73
74
{
"$schema": "https://json.schemastore.org/package.json",
"name": "discolink",
"type": "module",
"version": "4.6.1",
"description": "A Lavalink client for Discord bots in TypeScript",
"exports": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"./lib/",
"NOTICE"
],
"author": "Aman (https://github.com/execaman)",
"funding": "https://github.com/sponsors/execaman",
"repository": "https://github.com/execaman/discolink",
"homepage": "https://execaman.github.io/discolink",
"bugs": "https://github.com/execaman/discolink/issues",
"keywords": [
"audio",
"player",
"client",
"discord",
"lavalink"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"lint": "prettier --check . && tsc --noEmit",
"test": "vitest run",
"build": "tsdown",
"docs": "typedoc",
"format": "prettier --log-level error --write .",
"deps": "ncu --format group --dep",
"upgrade": "ncu -u && npm update",
"prepare": "husky || true"
},
"engines": {
"node": ">=22.22"
},
"dependencies": {
"ws": "^8.20.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.4",
"husky": "^9.1.7",
"npm-check-updates": "^21.0.2",
"prettier": "^3.8.3",
"tsdown": "^0.21.9",
"typedoc": "^0.28.19",
"typedoc-material-theme": "^1.4.1",
"typedoc-plugin-dt-links": "^2.0.50",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}