-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.57 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.57 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
{
"name": "revenge-plugins",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/nexpid/RevengePlugins.git"
},
"scripts": {
"build": "tsx scripts/build/index.ts",
"dev": "pnpm build --dev",
"watch": "tsx scripts/watch/index.ts",
"serve": "tsx scripts/serve/index.ts",
"crowdin": "tsx scripts/crowdin/index.ts",
"declarations": "tsx scripts/declarations/index.ts",
"ci": "pnpm lint && pnpm format && pnpm check",
"lint": "biome check --fix",
"format": "dprint fmt",
"check": "tsc"
},
"dependencies": {
"@nexpid/vdp-shared": "^1.0.2",
"@song-spotlight/api": "^2.1.3",
"@swc/core": "^1.10.7",
"dts-bundle": "^0.7.3",
"emoji-regex": "^10.4.0",
"esbuild": "^0.20.1",
"fuzzysort": "^3.1.0",
"image-size": "2.0.2",
"mime": "^4.0.7",
"tsx": "4.19.4"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@eslint/js": "^9.26.0",
"@types/dts-bundle": "^0.0.35",
"@types/tar-fs": "^2.0.4",
"chokidar": "^4.0.3",
"detect-libc": "^2.0.4",
"picocolors": "^1.1.1",
"tar-fs": "3.0.8",
"typescript": "^5.8.3",
"vendetta-types": "^2.4.21",
"ws": "^8.18.2",
"zustand": "^5.0.6"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-native"
]
},
"onlyBuiltDependencies": [
"@biomejs/biome",
"@swc/core",
"esbuild"
]
},
"patchedDependencies": {
"fuzzysort@3.1.0": "patches/fuzzysort@3.1.0.patch"
},
"overrides": {
"@types/minimatch": "5.1.2"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=24.2.0",
"dprint": "0.50.1"
}
}