generated from stegripe/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.25 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
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
{
"name": "esbatu",
"version": "1.0.1",
"description": "Esbatu surpasses Lavalink with superior stability, frequent updates, extended capabilities, and efficient Redis caching, offering a reliable music streaming experience.",
"license": "AGPL-3.0",
"author": "Stegripe Development <support@stegripe.org>",
"repository": {
"type": "git",
"url": "git+https://github.com/stegripe/esbatu.git"
},
"bugs": {
"url": "https://github.com/stegripe/esbatu/issues"
},
"homepage": "https://github.com/stegripe/esbatu#readme",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --noEmit && tsup --config tsup-config.json",
"build:docs": "typedoc --theme default --readme README.md --out docs/ --entryPointStrategy expand src/.",
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src",
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src",
"prepack": "pnpm lint && pnpm build",
"release": "pnpm publish --access public --no-git-checks"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.x"
},
"dependencies": {
"discord-api-types": "^0.37.104",
"lavalink-api-types": "^2.0.2",
"undici": "^6.21.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@stegripe/eslint-config": "^1.0.1",
"@types/node": "^22.9.0",
"@types/ws": "^8.5.13",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"peerDependencies": {
"ioredis": ">=5.4.1"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
}
}
}