-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.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
{
"name": "re-mplus",
"type": "module",
"private": true,
"author": "Rhythm",
"license": "MIT",
"scripts": {
"build": "tsc --project ./",
"build:cron": "esbuild src/updater/analyse.ts --bundle --platform=node --outfile=dist/analyse.js",
"build:public": "esbuild src/browser/main.ts --bundle --minify --outfile=public/main.js",
"build:static": "tsx src/data/index.ts",
"dev": "esbuild src/browser/main.ts --bundle --outdir=public --watch --servedir=public",
"dev:data": "tsx src/updater/analyse.ts public/data.json",
"start": "serve public",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@rhyster/wow-casc-dbc": "^2.15.2",
"async": "^3.2.6",
"jimp": "^1.6.1"
},
"devDependencies": {
"@rhyster/eslint-config": "^2.0.12",
"@types/async": "^3.2.25",
"@types/node": "^24.12.4",
"esbuild": "^0.28.0",
"eslint": "^10.4.0",
"serve": "^14.2.6",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.2.1"
}