-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.82 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "chunk-generator",
"version": "1.0.0",
"description": "Seamlessly generates chunks for the Bedrock Edition of Minecraft using a WebSocket server",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/GitWither/chunk-generator"
},
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"build": {
"appId": "chunk-generator",
"productName": "Chunk Generator",
"artifactName": "${productName}_${arch}_${version}.${ext}",
"publish": [
{
"provider": "github"
}
],
"mac": {
"category": "macOS.application"
},
"files": [
"css/",
"src/",
"build/",
"index.js",
"index.html"
],
"dmg": {
"artifactName": "${productName}_${version}.${ext}",
"window": {
"x": 200,
"y": 100,
"width": 440,
"height": 220
},
"contents": [
{
"x": 130,
"y": 120
},
{
"x": 360,
"y": 120,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"artifactName": "${productName}_${arch}_${version}.${ext}",
"target": "nsis"
}
},
"author": "Wither",
"license": "MIT",
"devDependencies": {
"electron": "^9.1.1",
"electron-builder": "^21.2.0"
},
"dependencies": {
"express": "^4.17.1",
"ip": "^1.1.5",
"jquery": "^3.5.1",
"uuid": "^8.2.0",
"ws": "^7.3.1"
}
}