forked from diffusionstudio/editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 899 Bytes
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
{
"name": "@diffusionstudio/editor",
"version": "0.201.0",
"private": true,
"license": "MPL-2.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev:desktop",
"dev:web_v1": "npm run dev --workspace=@diffusionstudio/web",
"dev:desktop": "node scripts/dev-desktop.mjs",
"build": "npm run build --workspace=@diffusionstudio/web",
"build:web_v1": "npm run build --workspace=@diffusionstudio/web",
"build:desktop": "npm run build --workspace=@diffusionstudio/desktop",
"make": "npm run make --workspace=@diffusionstudio/desktop",
"release": "node scripts/release.mjs",
"postinstall": "patch-package",
"lint": "npm run lint --workspaces --if-present",
"check": "npm run check --workspaces --if-present && tsc -p examples --noEmit"
},
"devDependencies": {
"patch-package": "^8.0.1"
}
}