forked from samuelmaddock/electron-browser-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.37 KB
/
package.json
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
30
31
32
33
34
{
"name": "electron-browser-shell",
"version": "1.0.0",
"description": "A minimal browser shell built on Electron.",
"private": true,
"workspaces": [
"packages/shell",
"packages/electron-chrome-extensions",
"packages/electron-chrome-context-menu"
],
"scripts": {
"build": "yarn run build:context-menu && yarn run build:extensions && yarn run build:shell",
"build:context-menu": "yarn --cwd ./packages/electron-chrome-context-menu build",
"build:extensions": "yarn --cwd ./packages/electron-chrome-extensions build",
"build:shell": "yarn --cwd ./packages/shell build",
"start": "yarn build && yarn --cwd ./packages/shell start",
"start:debug": "cross-env SHELL_DEBUG=true DEBUG='electron-chrome-extensions*' yarn start",
"start:skip-build": "cross-env SHELL_DEBUG=true DEBUG='electron-chrome-extensions*' yarn --cwd ./packages/shell start",
"test": "yarn test:extensions && yarn test:shell",
"test:extensions": "yarn --cwd ./packages/electron-chrome-extensions test",
"test:shell": "yarn --cwd ./packages/shell test"
},
"license": "GPL-3.0",
"author": "Samuel Maddock <[email protected]>",
"dependencies": {},
"repository": "[email protected]:samuelmaddock/electron-browser-shell.git",
"prettier": {
"printWidth": 100,
"singleQuote": true,
"jsonEnable": false,
"semi": false,
"endOfLine": "lf"
}
}