forked from Araxeus/custom-electron-prompt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.05 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
53
{
"name": "custom-electron-prompt",
"version": "1.1.0",
"description": "Custom prompt for Electron made easy with various templates",
"homepage": "https://github.com/araxeus/custom-electron-prompt#readme",
"keywords": [
"electron",
"input",
"select",
"counter",
"accelerator",
"keybind",
"prompt",
"dialog"
],
"author": {
"name": "Araxeus",
"email": "[email protected]",
"url": "https://github.com/araxeus"
},
"repository": "github:araxeus/custom-electron-prompt",
"license": "MIT",
"main": "lib/index",
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"test": "npm run lint"
},
"xo": {
"esnext": true,
"env": [
"node",
"browser"
],
"rules": {
"unicorn/prefer-ternary": 0,
"quotes": [
"error",
"double",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
]
}
},
"devDependencies": {
"xo": "^0.38.2"
},
"dependencies": {
"electron": "^13.1.2"
}
}