-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 925 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
28
{
"name": "@diffusionstudio/editor",
"version": "0.206.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",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"patch-package": "^8.0.1"
}
}