forked from vivid-lapin/electron-button-fullscreen-repro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 925 Bytes
/
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
{
"name": "electron-v22-native-module-repro",
"version": "1.0.0",
"description": "repro",
"author": "ci7lus <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vivid-lapin/electron-v22-native-module-repro"
},
"main": "dist/index.js",
"scripts": {
"start": "yarn build && ELECTRON_ENABLE_STACK_DUMPING=true electron .",
"build": "tsc",
"lint:prettier": "prettier --check './src/**/*.{js,ts,tsx}'",
"format:prettier": "prettier --write './src/**/*.{js,ts,tsx}'"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{js,ts,tsx,md}": "prettier"
},
"dependencies": {
"electron": "^22.2.0",
"webchimera.js": "git+https://github.com/neneka/WebChimera.js.git#v0.5.3"
}
}