20 lines
589 B
JSON
20 lines
589 B
JSON
{
|
|
"name": "argonode",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "npm --prefix frontend install",
|
|
"dev": "npm --prefix frontend run dev",
|
|
"build": "npm --prefix frontend run build",
|
|
"preview": "npm --prefix frontend run preview",
|
|
"backend": "python -m backend.main",
|
|
"desktop": "python desktop.py",
|
|
"build:windows": "powershell -ExecutionPolicy Bypass -File scripts\\build-windows.ps1",
|
|
"build:mac": "bash scripts/build-mac.sh",
|
|
"build:linux": "bash scripts/build-linux.sh"
|
|
}
|
|
}
|