-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 776 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 776 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": "initial-editor-main",
"version": "1.0.0",
"repository": "https://github.com/biud436/InitialEditor.git",
"author": "biud436 <biud436@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"script:build": "yarn workspace initial-editor run script:build",
"dev": "yarn workspace renderer run dev",
"build:editor": "yarn workspace initial-editor run build",
"build:renderer": "yarn workspace renderer run build",
"build": "yarn build:editor && yarn build:renderer",
"start": "yarn workspace renderer run start"
},
"packageManager": "yarn@1.22.19",
"dependencies": {
"@changesets/cli": "^2.26.2",
"ultra-runner": "^3.10.5"
}
}