-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
36 lines (36 loc) · 964 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
33
34
35
36
{
"name": "clappy-mic",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:ramonh/clappy-mic.git",
"author": "Ramón Huidobro <[email protected]>",
"license": "MIT",
"build": {
"appId": "com.clappy-mic"
},
"scripts": {
"build": "npx electron-rebuild -f -m node_modules/robotjs",
"start": "yarn run build && ./node_modules/.bin/electron .",
"export": "yarn run build && CSC_IDENTITY_AUTO_DISCOVERY=false ./node_modules/.bin/electron-builder ."
},
"husky": {
"hooks": {
"pre-commit": "precise-commits"
}
},
"dependencies": {
"node-gyp": "^7.0.0",
"robotjs": "^0.6.0"
},
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "^22.7.0",
"electron-rebuild": "^1.11.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"precise-commits": "^1.0.2",
"prettier": "^2.0.5"
}
}