-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 881 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
37
38
39
{
"name": "custom-electron-prompt",
"version": "1.5.8",
"description": "Custom prompt for Electron made easy with various templates",
"homepage": "https://araxeus.github.io/custom-electron-prompt",
"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": {
"release": "bun check && npm publish",
"check": "bun biome check",
"ci": "bun biome ci",
"lint": "bun biome check --write"
},
"files": [
"lib/"
],
"peerDependencies": {
"electron": ">=10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3"
}
}