forked from ZPTXDev/Quaver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.42 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.42 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "quaver",
"version": "8.0.0-next.32",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@discordjs/rest": "^2.6.0",
"@keyv/sqlite": "^4.0.6",
"@lavaclient/plugin-effects": "^1.0.0-rc.2",
"@lavaclient/plugin-queue": "^0.0.1",
"@zptxdev/zptx-lib": "^1.1.0",
"adm-zip": "^0.5.16",
"cache-manager": "^7.2.7",
"cacheable": "^2.3.2",
"crypto-js": "^4.2.0",
"discord.js": "^14.25.1",
"effect": "2.4.19",
"express": "^5.2.1",
"hangul-romanization": "^1.0.1",
"keyv": "^5.5.5",
"lavaclient": "^5.0.0-rc.3",
"lavalink-protocol": "^1.1.1",
"lavalink-ws-client": "^1.0.2",
"lodash-es": "^4.17.23",
"path-exists-cli": "^2.0.0",
"pinyin-pro": "^3.28.0",
"semver": "^7.7.4",
"socket.io": "^4.8.3",
"sqlite3": "^5.1.7",
"undici": "^7.21.0",
"wanakana": "^5.3.1",
"winston": "^3.19.0",
"winston-loki": "^6.1.3",
"yocto-spinner": "^1.1.0",
"yoctocolors": "^2.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/adm-zip": "^0.5.7",
"@types/crypto-js": "^4.2.2",
"@types/express": "^5.0.6",
"@types/lodash-es": "^4.17.12",
"@types/semver": "^7.7.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"fast-glob": "^3.3.3",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"main": "dist/main.mjs",
"scripts": {
"slash:register:global": "path-exists node_modules/.pnpm && node scripts/register-global-commands.js || bun scripts/register-global-commands.js",
"slash:register:guild": "path-exists node_modules/.pnpm && node scripts/register-guild-commands.js || bun scripts/register-guild-commands.js",
"slash:delete:global": "path-exists node_modules/.pnpm && node scripts/delete-global-commands.js || bun scripts/delete-global-commands.js",
"slash:delete:guild": "path-exists node_modules/.pnpm && node scripts/delete-guild-commands.js || bun scripts/delete-guild-commands.js",
"migrate": "path-exists node_modules/.pnpm && node scripts/migrate.js || bun scripts/migrate.js",
"generate-locale-types": "path-exists node_modules/.pnpm && node scripts/generate-locale-types.js || bun scripts/generate-locale-types.js",
"build": "(path-exists node_modules/.pnpm && pnpm run generate-locale-types || bun run generate-locale-types) && rimraf dist/ && tsdown",
"start": "path-exists node_modules/.pnpm && node . || bun .",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit"
},
"imports": {
"#src/*": "./src/*"
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "jq --arg v \"${nextRelease.version}\" '.version = $v' package.json > package.json.tmp && mv package.json.tmp package.json && echo \"export const version = '${nextRelease.version}'; export const buildTime = '$(date -u +\"%Y-%m-%dT%H:%M:%SZ\")';\" > dist/version.mjs && mkdir -p release && cp -r dist patches scripts locales package.json settings.example.json bun.lock pnpm-lock.yaml README.md LICENSE release/ 2>/dev/null || true && cd release && zip -r ../quaver-release.zip ."
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "quaver-release.zip",
"label": "Quaver ${nextRelease.version}"
}
]
}
]
]
},
"trustedDependencies": [
"protobufjs",
"sqlite3"
],
"patchedDependencies": {
"keyv@5.5.4": "patches/keyv@5.5.4.patch",
"@lavaclient/plugin-queue@0.0.1": "patches/@lavaclient__plugin-queue@0.0.1.patch",
"winston-loki@6.1.3": "patches/winston-loki@6.1.3.patch"
},
"pnpm": {
"patchedDependencies": {
"keyv@5.5.4": "patches/keyv@5.5.4.patch",
"@lavaclient/plugin-queue@0.0.1": "patches/@lavaclient__plugin-queue@0.0.1.patch",
"winston-loki@6.1.3": "patches/winston-loki@6.1.3.patch"
}
},
"packageManager": "pnpm@8.15.9"
}