-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.98 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 1.98 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ryanlink",
"version": "2.3.0",
"description": "High-performance, flexible and feature-rich lavalink-v4 wrapper for Discord bots,",
"keywords": [
"advanced",
"bot",
"client",
"discord",
"ryanlink",
"audio",
"lavalink",
"lavasrc",
"lavalyrics",
"music",
"typescript",
"audio-engine"
],
"homepage": "https://ryanwtf7.github.io/ryanlink",
"bugs": {
"url": "https://github.com/ryanwtf7/ryanlink/issues"
},
"license": "Apache-2.0",
"author": "RY4N",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/ryanwtf7/ryanlink.git"
},
"directories": {
"lib": "src"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./dist/index.mjs",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"fmt": "prettier --write .",
"test": "jest",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run fmt && npm run build"
},
"dependencies": {
"tslib": "^2.8.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/jest": "^29.5.14",
"@types/node": "^24.10.15",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.21.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"engines": {
"bun": ">=1.1.27",
"node": ">=18.0.0"
},
"packageManager": "bun@1.3.9",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}