-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (32 loc) · 1.02 KB
/
package.json
File metadata and controls
executable file
·32 lines (32 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
{
"name": "loopar-framework",
"sideEffects": false,
"version": "6.0.1",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"preinstall": "node bin/installer-clean.js",
"postinstall": "node bin/ensure-site.js",
"dev": "node bin/loopar-cli.js dev && node bin/loopar-cli.js logs",
"start": "node bin/loopar-cli.js start",
"stop": "node bin/loopar-cli.js stop",
"restart": "node bin/loopar-cli.js restart",
"kill": "node bin/loopar-cli.js kill",
"startup": "node bin/loopar-cli.js startup",
"logs": "node bin/loopar-cli.js logs",
"list": "node bin/loopar-cli.js list",
"build": "yarn install --immutable --inline-builds && node bin/build-prepare.js && npm-run-all build:client build:server && node bin/build-activate.js",
"build:client": "node bin/run-vite.js client",
"build:server": "node bin/run-vite.js server"
},
"bin": {
"loopar": "./bin/loopar-cli.js"
},
"packageManager": "yarn@4.13.0"
}