-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "small_guys",
"description": "just a test of electron",
"version": "1.0.4",
"author": "jensen grundy <jayjayseven.g@gmail.com> (https://github.com/almost-jay/)",
"main": "./compiled/index.js",
"build": {
"appId": "com.creature.test",
"extraFiles": ["data"],
"asarUnpack": ["translations.json","tinyi18n.js"],
"icon": "resources/icon.ico",
"mac": {
"target": "zip",
"category": "public.app-category.games"
},
"win": {
"target": "zip"
},
"linux": {
"category": "Simulation",
"icon": "resources/256x256.png",
"target": [
"zip"
]
}
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder -wml"
},
"dependencies": {
"typescript": "^5.0.2",
"electron-squirrel-startup": "^1.0.0"
},
"devDependencies": {
"creature_test": "file:",
"electron": "^23.1.4",
"electron-builder": "^23.6.0",
"electron-packager": "^17.1.1",
"electron-squirrel-startup": "^1.0.0",
"eslint": "latest"
},
"postinstall": "electron-builder install-app-deps"
}