-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 865 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 865 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
29
{
"name": "portal-windows",
"version": "0.0.1",
"description": "render a window as easy as rendering a div",
"repository": "https://github.com/cryptagon/portal-windows",
"author": "Cyrus Roshan <cyrusroshan@users.noreply.github.com>",
"scripts": {
"in_examples": "cd examples && yarn",
"in_core": "yarn workspace @portal-windows/core",
"in_node": "yarn workspace @portal-windows/node",
"in_renderer": "yarn workspace @portal-windows/renderer",
"tsc": "yarn wsrun --collect-logs --report --stages --recursive tsc --build",
"release": "yarn tsc && yarn lerna publish"
},
"workspaces": {
"packages": [
"src/core",
"src/node",
"src/renderer",
"examples"
]
},
"devDependencies": {
"lerna": "^4.0.0",
"typescript": "^4.3.5",
"wsrun": "^5.2.4"
},
"packageManager": "yarn@3.0.2"
}