-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "GreenTea",
"version": "1.0.0",
"description": "A simple, minimalist code editor written in Javascript, HTML and CSS using Electron and the wonderful Ace editor",
"main": "main.js",
"author": "Rudolph Venter <rudolph.rv@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/rudolphventer/GreenTea"
},
"homepage": "https://github.com/rudolphventer/GreenTea",
"scripts": {
"postinstall": "electron-builder isntall-app-deps",
"start": "electron .",
"buildwindows": "electron-builder -w",
"buildlinux": "electron-builder -l"
},
"build": {
"appId": "com.greentea.editor.app",
"productName": "GreenTea",
"mac": {
"category": "public.app-category.development"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "resources/icon.ico"
},
"linux": {
"target": [
"appimage",
"deb"
],
"icon": "resources/256x256.icns",
"category": "Development"
}
},
"license": "ISC",
"devDependencies": {
"electron": "^13.6.6",
"electron-builder": "^22.7.0"
},
"dependencies": {
"directory-tree": "^2.2.4",
"js-treeview": "^1.1.5",
"node-ipc": "^9.1.1",
"openurl": "^1.1.1"
}
}