-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 KB
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
{
"name": "simplycode",
"description": "Simplycode in electron to build websites",
"main": "main.js",
"scripts": {
"test": "echo \"test not implemented yet\" && exit 1",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"make-mac": "electron-forge make --platform darwin",
"make-macintel": "electron-forge make --platform darwin --arch=\"arm64\"",
"postinstall": "bash scripts/post-install.sh",
"publish": "electron-forge publish"
},
"productName": "simplycode",
"keywords": [
"javascript",
"html",
"IDE"
],
"author": "Govert Combee",
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.5.0",
"@electron-forge/maker-deb": "^7.5.0",
"@electron-forge/maker-rpm": "^7.5.0",
"@electron-forge/maker-squirrel": "^7.5.0",
"@electron-forge/maker-zip": "^7.5.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.5.0",
"@electron-forge/plugin-fuses": "^7.5.0",
"@electron-forge/publisher-github": "^7.5.0",
"@electron/fuses": "^1.8.0",
"electron": "^37.3.1"
},
"optionalDependencies": {
"@electron-forge/maker-dmg": "^7.5.0",
"appdmg": "^0.6.6",
"electron-installer-debian": "^3.2.0",
"electron-installer-dmg": "^5.0.1",
"electron-installer-redhat": "^3.4.0"
},
"dependencies": {
"codemirror": "^5.65.2",
"electron-squirrel-startup": "^1.0.1",
"jszip": "^3.10.1",
"node-abi": "^4.11.0",
"qunit": "^2.24.1",
"simplycode": "github:simplyedit/simplycode",
"simplyedit": "github:simplyedit/simplyedit",
"simplyview": "github:simplyedit/simplyview"
},
"config": {
"forge": "forge.config.js"
}
}