-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.02 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.02 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
{
"name": "quaver",
"version": "7.3.0",
"type": "module",
"engines": {
"node": ">=20"
},
"dependencies": {
"@discordjs/rest": "^2.5.1",
"@keyv/sqlite": "^4.0.4",
"@lavaclient/plugin-effects": "^1.0.0-rc.2",
"@lavaclient/plugin-queue": "^0.0.1",
"@napi-rs/pinyin": "^1.7.5",
"@zptxdev/zptx-lib": "^1.1.0",
"cache-manager": "^6.4.3",
"cacheable": "^1.10.0",
"crypto-js": "^4.2.0",
"discord.js": "<=14.18.0",
"express": "^5.1.0",
"genversion": "^3.2.0",
"hangul-romanization": "^1.0.1",
"keyv": "^5.3.3",
"kuroshiro": "1.2.0",
"kuroshiro-analyzer-kuromoji": "^1.1.0",
"lavaclient": "^5.0.0-rc.3",
"lavalink-protocol": "^1.1.1",
"lavalink-ws-client": "^1.0.2",
"lodash-es": "^4.17.21",
"socket.io": "^4.8.1",
"sqlite3": "^5.1.7",
"undici": "^7.11.0",
"wanakana": "^5.3.1",
"winston": "^3.17.0",
"winston-loki": "^6.1.3"
},
"devDependencies": {
"@discordjs/builders": "<=1.10.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@types/crypto-js": "^4.2.2",
"@types/express": "^5.0.3",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"prettier": "^3.6.1",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
},
"main": "dist/main.js",
"scripts": {
"slash:register:global": "node scripts/register-global-commands.js",
"slash:register:guild": "node scripts/register-guild-commands.js",
"slash:delete:global": "node scripts/delete-global-commands.js",
"slash:delete:guild": "node scripts/delete-guild-commands.js",
"migrate": "node scripts/migrate.js",
"build": "rimraf dist/ && genversion --es6 --semi src/lib/util/version.ts && tsc && tsc-alias",
"start": "node .",
"dev": "node --enable-source-maps .",
"lint": "eslint . --ext .ts"
},
"imports": {
"#src/*": "./src/*"
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"pnpm": {
"patchedDependencies": {
"@lavaclient/plugin-queue@0.0.1": "patches/@lavaclient__plugin-queue@0.0.1.patch",
"kuroshiro-analyzer-kuromoji@1.1.0": "patches/kuroshiro-analyzer-kuromoji@1.1.0.patch",
"kuroshiro@1.2.0": "patches/kuroshiro@1.2.0.patch",
"keyv@5.3.3": "patches/keyv@5.3.3.patch",
"winston-loki@6.1.3": "patches/winston-loki@6.1.3.patch"
},
"neverBuiltDependencies": []
},
"packageManager": "pnpm@8.15.9"
}