-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.68 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
{
"name": "blockpilot-panel",
"version": "1.0.4",
"private": true,
"type": "module",
"description": "Self-hosted Minecraft Java Edition server management panel for Windows and Linux",
"workspaces": [
"apps/*"
],
"scripts": {
"preinstall": "node scripts/check-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",
"package:windows": "npm run build && node scripts/package-runtime.mjs",
"lint": "npm run lint -w @blockpilot/api && npm run lint -w @blockpilot/web",
"reset-admin": "node scripts/reset-admin.mjs",
"setup-env": "node scripts/setup-env.mjs",
"check:i18n": "node scripts/check-i18n.mjs",
"verify": "npm run lint && npm run check:i18n && npm run check:ui && npm run check:network && npm run check:windows && npm run check:source && npm run check:discord && npm run check:deps && npm run build",
"check:ui": "node scripts/check-ui-basics.mjs",
"check:network": "node scripts/check-network-config.mjs",
"check:source": "node scripts/check-source-hygiene.mjs",
"check:deps": "node scripts/check-dependencies.mjs",
"check:discord": "node scripts/check-discord.mjs",
"check:windows": "node scripts/check-windows-line-endings.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"
}