-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.17 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
{
"name": "factorio-map-webui",
"version": "0.0.0",
"private": true,
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "vp dev",
"build": "vp build",
"test": "vp test",
"perf": "FMW_PERF=1 vp test test/render-cost.perf.spec.ts && cat perf-result.txt",
"check": "vp check --fix",
"check:vue": "vue-tsc --noEmit",
"refs:sync": "bash scripts/sync-factorio-refs.sh",
"verify:deploy": "node scripts/verify-deploy.ts",
"verify:lint": "vp check && pnpm run check:vue",
"verify:static": "pnpm run verify:lint && pnpm run preview:test",
"verify:shard": "vp test",
"verify": "pnpm run verify:lint && vp run --cache test && pnpm run preview:test",
"localpreview": "pnpm run preview:dev",
"require:docker": "node scripts/require-docker.ts",
"preview:dev": "pnpm run require:docker && concurrently -k -n worker,app -c blue,green \"pnpm run preview:worker\" \"pnpm run preview:app\"",
"preview:worker": "pnpm --filter @fmw/preview-worker exec wrangler dev --var ALLOWED_ORIGIN:http://localhost:5173",
"preview:app": "VITE_PREVIEW_SERVICE_URL=http://localhost:8787 vp dev --port 5173 --strictPort",
"preview:test": "pnpm --filter @fmw/preview-worker test && pnpm --filter @fmw/preview-container test",
"preview:deploy": "pnpm run require:docker && pnpm --filter @fmw/preview-worker run deploy",
"deploy:app": "pnpm run verify && pnpm build && pnpm --filter @fmw/preview-worker exec wrangler pages deploy dist --cwd ../.. --project-name factoriomapwebui --branch main --commit-dirty=true",
"deploy": "pnpm run deploy:app"
},
"dependencies": {
"@vue/devtools-api": "^8.2.1",
"client-zip": "^2.5.0",
"pako": "^3.0.1",
"pinia": "^4.0.2",
"vue": "^3.5.40"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.8",
"@vue/test-utils": "^2.4.11",
"concurrently": "^10.0.4",
"happy-dom": "^20.11.1",
"jszip": "^3.10.1",
"typescript": "^6.0.3",
"vite-plus": "^0.2.6",
"vue-tsc": "^3.3.8"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.18.0",
"onFail": "download"
}
},
"engines": {
"node": ">=24.18.0"
}
}