-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
52 lines (52 loc) · 2.32 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"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",
"packages/electron-chrome-web-store"
],
"scripts": {
"build": "yarn run build:context-menu && yarn run build:chrome-web-store && yarn run build:extensions && yarn run build:shell",
"build:chrome-web-store": "yarn --cwd ./packages/electron-chrome-web-store build",
"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:context-menu && yarn build:extensions && yarn build:chrome-web-store && yarn --cwd ./packages/shell start",
"start:debug": "cross-env SHELL_DEBUG=true DEBUG='electron*' yarn start",
"start:electron-dev": "cross-env ELECTRON_OVERRIDE_DIST_PATH=$(e show out --path) ELECTRON_ENABLE_LOGGING=1 yarn start",
"start:electron-dev:debug": "cross-env DEBUG='electron*' yarn start:electron-dev",
"start:electron-dev:trace": "cross-env ELECTRON_OVERRIDE_DIST_PATH=$(e show out --path) ELECTRON_ENABLE_LOGGING=1 yarn --cwd ./packages/shell start:trace",
"start:skip-build": "cross-env SHELL_DEBUG=true DEBUG='electron-chrome-extensions*' yarn --cwd ./packages/shell start",
"test": "yarn test:extensions",
"test:extensions": "yarn --cwd ./packages/electron-chrome-extensions test",
"prepare": "husky",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css}\"",
"generate-noncompliant": "cat noncompliant.txt | awk '{print tolower($0)}' | xargs -I {} node ./scripts/generate-hash.js {}"
},
"license": "GPL-3.0",
"author": "Samuel Maddock <sam@samuelmaddock.com>",
"dependencies": {},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1"
},
"repository": "git@github.com:samuelmaddock/electron-browser-shell.git",
"engines": {
"node": ">= 16.0.0",
"yarn": ">= 1.10.0 < 2.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"semi": false,
"endOfLine": "lf"
}
}