-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
62
63
64
65
66
67
68
{
"name": "webkitty",
"productName": "WebKitty",
"description": "Native web development IDE",
"version": "3.2.1",
"author": {
"name": "Yikuan Sun",
"url": "https://yikuansun.github.io"
},
"contributors": [
"MySpaceEmoCat (https://github.com/MySpaceEmoCat)"
],
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --mac --linux --windows"
},
"devDependencies": {
"electron": "^17.1.0",
"electron-builder": "^22.14.5"
},
"dependencies": {
"@codemirror/lang-css": "^6.0.2",
"@codemirror/lang-html": "^6.4.2",
"@codemirror/lang-javascript": "^6.1.4",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.1.0",
"@codemirror/lang-python": "^6.1.2",
"@codemirror/lang-xml": "^6.0.2",
"@codemirror/theme-one-dark": "^6.1.1",
"@electron/remote": "^2.0.5",
"adm-zip": "^0.5.5",
"cm6-theme-basic-dark": "^0.2.0",
"cm6-theme-material-dark": "^0.2.0",
"codemirror": "^6.0.1",
"express": "^4.18.2",
"ezserv": "^1.0.0",
"mime-types": "^2.1.35"
},
"build": {
"appId": "com.electron.webkitty",
"directories": {
"buildResources": "resources"
},
"dmg": {
"window": {
"width": 512,
"height": 320
},
"contents": [
{
"x": 160,
"y": 180
},
{
"x": 352,
"y": 180,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"target": "zip"
}
}
}