-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "blockpilot-panel",
"version": "1.0.5",
"private": true,
"type": "module",
"description": "Self-hosted Minecraft Java Edition server management panel for Windows and Linux",
"workspaces": [
"apps/*"
],
"scripts": {
"preinstall": "node scripts/validate-node-version.mjs",
"dev": "npm run dev -w @blockpilot/api & npm run dev -w @blockpilot/web",
"build": "npm run build -w @blockpilot/api && npm run build -w @blockpilot/web && node scripts/stamp-web-build.mjs",
"start": "node app.js",
"lint": "npm run lint -w @blockpilot/api && npm run lint -w @blockpilot/web",
"verify": "npm run lint && npm run build",
"package:windows": "npm run build && node scripts/package-runtime.mjs",
"reset-admin": "node scripts/reset-admin.mjs",
"setup-env": "node scripts/setup-env.mjs",
"curseforge:remove-official-key": "node scripts/remove-official-curseforge-key.mjs"
},
"devDependencies": {},
"engines": {
"node": ">=22 <27",
"npm": ">=10"
},
"allowScripts": {
"esbuild@0.28.1": true,
"esbuild@0.25.12": true
},
"keywords": [
"minecraft",
"server-panel",
"self-hosted",
"fastify",
"react",
"sqlite"
],
"license": "Apache-2.0"
}