-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 923 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "textflow-studio",
"version": "0.2.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"config:sync": "node scripts/sync-project-config.mjs",
"config:check": "node scripts/sync-project-config.mjs --check",
"dev": "npm run dev --workspace apps/desktop",
"build": "npm run config:check && npm run build --workspace apps/desktop",
"lint": "npm run lint --workspace apps/desktop",
"dev:desktop:real": "node scripts/smoke-desktop-real.mjs --keep-open",
"smoke:desktop:real": "node scripts/smoke-desktop-real.mjs",
"test:engine": "powershell -ExecutionPolicy Bypass -File .\\scripts\\test-engine.ps1",
"test:engine:fast": "powershell -ExecutionPolicy Bypass -File .\\scripts\\test-engine.ps1 -Suite fast",
"test:engine:full": "powershell -ExecutionPolicy Bypass -File .\\scripts\\test-engine.ps1 -Suite full"
}
}