-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.61 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
73
74
75
76
77
78
79
80
81
82
{
"name": "Atlas",
"version": "0.7.0",
"description": "Atas .rbsd files viewer",
"main": "main.js",
"scripts": {
"dev": "electron .",
"build": "electron-builder --dir",
"dist": "electron-builder -mw"
},
"build": {
"productName": "Atlas",
"appId": "com.robotique-ecam.atlas",
"directories": {
"output": "build"
},
"files": [
"./main.js",
"./index.*",
"./scripts/**",
"./textures/**",
"./preload.js"
],
"publish": [
{
"provider": "github",
"owner": "robotique-ecam",
"repo": "Atlas"
}
],
"fileAssociations": [
{
"ext": [
"rbsd"
],
"description": "Robot Simulation Data",
"role": "Viewer"
}
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "Icon/icon.icns",
"category": "public.app-category.robotics"
},
"win": {
"icon": "Icon/Icon.ico"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/robotique-ecam/Atlas.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/3wnbr1/Atlas/issues"
},
"homepage": "https://github.com/3wnbr1/Atlas#readme",
"dependencies": {
"adm-zip": "^0.5.4",
"electron-updater": "^4.3.8",
"temp": "^0.9.1"
},
"devDependencies": {
"electron": "^12.1.0",
"electron-builder": "^22.10.5"
}
}