-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.27 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
58
59
60
61
{
"name": "spectrum-editor",
"version": "1.1.3",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": "Lawrence Thorpe",
"license": "MIT",
"description": "Text editor with ZX Spectrum theme",
"devDependencies": {
"electron": "^1.6.11",
"electron-builder": "^19.22.1"
},
"dependencies": {
"electron-log": "^2.2.7",
"electron-updater": "^2.7.1",
"monaco-editor": "^0.9.0",
"monaco-loader": "^0.8.2"
},
"build": {
"appId": "com.electron.spectrumeditor",
"productName": "Spectrum Editor",
"mac": {
"category": "public.app-category.developer-tools"
},
"linux": {
"category": "Development",
"target": [
"tar.gz",
"AppImage"
]
},
"win": {
"target": [
"nsis",
"zip"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/thorpelawrence/spectrum-editor.git"
},
"keywords": [
"zx",
"spectrum",
"text",
"editor",
"electron",
"node",
"nodejs",
"js"
],
"bugs": {
"url": "https://github.com/thorpelawrence/spectrum-editor/issues"
},
"homepage": "https://github.com/thorpelawrence/spectrum-editor#readme"
}