-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
54
55
56
57
{
"name": "sainte-devote",
"version": "0.0.1",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dev": "cross-env NODE_ENV=development electronmon .",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux"
},
"build": {
"appId": "dev.izumiz.sainte-devote",
"productName": "Sainte Devote",
"icon": "assets/icon.png",
"mac": {
"target": [
"zip"
],
"category": "public.app-category.utilities",
"icon": "assets/icon.icns"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "assets/icon.ico"
},
"linux": {
"target": [
"AppImage"
],
"category": "Utility",
"icon": "assets/icon.png"
}
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "Sainte devote is tiny monaco editor.",
"dependencies": {
"github-markdown-css": "^5.7.0",
"monaco-editor": "^0.50.0",
"marked": "^5.1.0"
},
"devDependencies": {
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"electron": "^31.0.2",
"electron-builder": "^24.13.3",
"electron-reload": "^2.0.0-alpha.1",
"electronmon": "^2.0.3",
"wait-on": "^8.0.1"
}
}