-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "quaver",
"version": "7.1.2",
"type": "module",
"engines": {
"node": ">=20"
},
"dependencies": {
"@discordjs/rest": "^2.3.0",
"@keyv/sqlite": "^3.6.7",
"@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",
"crypto-js": "^4.2.0",
"discord-api-types": "^0.37.92",
"discord.js": "^14.15.3",
"express": "^4.19.2",
"genversion": "^3.2.0",
"hangul-romanization": "^1.0.1",
"keyv": "^4.5.4",
"kuroshiro": "1.2.0",
"kuroshiro-analyzer-kuromoji": "^1.1.0",
"lavaclient": "^5.0.0-rc.3",
"lavalink-protocol": "^1.0.2",
"lodash-es": "^4.17.21",
"socket.io": "^4.7.5",
"undici": "^6.19.2",
"wanakana": "^5.3.1",
"winston": "^3.13.0",
"winston-loki": "^6.1.2"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.21",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3"
},
"main": "dist/main.js",
"scripts": {
"slash:deploy": "node scripts/deploy-commands.js",
"slash:delete": "node scripts/delete-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/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}