-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 965 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
40
41
42
43
44
{
"name": "sbe",
"version": "3.6.0",
"description": "An unofficial Scrapbox desktop app by Electron",
"main": "src/main.mjs",
"type": "module",
"build": {
"productName": "sbe",
"appId": "sbe",
"mac": {
"icon": "icons/mac/sbe.icns"
},
"win": {
"icon": "icons/win/sbe.ico"
},
"linux": {
"icon": "icons/png/256x256.png",
"target": ["AppImage"]
}
},
"scripts": {
"start": "electron .",
"test": "playwright test",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": "https://github.com/kondoumh/sbe",
"keywords": [
"Electron",
"Scrapbox"
],
"author": "kondoumh",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.48.2",
"electron": "^33.2.0",
"electron-builder": "^25.1.8"
},
"dependencies": {
"compare-versions": "^6.1.1",
"electron-context-menu": "^4.0.4",
"electron-store": "^10.0.0"
}
}