-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
56
57
58
59
{
"name": "wfCodeEditor",
"version": "1.1.3",
"description": "A minimal Code Editor",
"main": "main.js",
"scripts": {
"start": "electron .",
"watch": "nodemon --exec electron .",
"postinstall": "install-app-deps",
"build": "electron-builder --win"
},
"repository": "https://github.com/wyntonfranklin/wfcodeeditor",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "wfranklin",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^13.1.2",
"electron-builder": "^22.11.7",
"nodaemon": "0.0.5",
"nodemon": "^2.0.7"
},
"dependencies": {
"copy-paste": "^1.3.0",
"electron-prompt": "^1.6.2",
"electron-store": "^8.0.0",
"fs-extra": "^10.0.0",
"highlight.js": "^11.1.0",
"interactjs": "^1.10.11",
"jimp": "^0.16.1",
"jszip": "^3.7.1",
"micromodal": "^0.4.6",
"nedb": "^1.8.0",
"node-cmd": "^4.0.0",
"notifyjs": "^3.0.0",
"open": "^8.2.1",
"open-file-explorer": "^1.0.2"
},
"build": {
"appId": "com.wftutorials.wfCodeEditor",
"copyright": "Copyright wfTutorials.com",
"appx": {
"applicationId": "wfCodeEditor",
"identityName": "42258wfSoftware.wfCodeEditor",
"publisher": "CN=181B903A-B583-4019-B527-119F9209AC90",
"displayName": "wfCodeEditor"
},
"win": {
"target": [
"appx"
]
}
}
}