-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.73 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
{
"name": "easy-sphere-viewer",
"version": "1.2.5",
"description": "An easy to use program to view 360 images.",
"main": "main.js",
"scripts": {
"start": "electron . --dev",
"dist": "electron-builder",
"release": "electron-builder --win -p always"
},
"keywords": [
"360",
"viewer",
"panoramic",
"equirectangular",
"photo",
"gui"
],
"author": "Jelle Glebbeek",
"license": "GPL-3.0-only",
"devDependencies": {
"electron": "^9.0.5",
"electron-builder": "^22.7.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.1",
"@popperjs/core": "^2.4.4",
"custom-electron-titlebar": "^3.2.2-hotfix62",
"electron-updater": "^4.3.1",
"jquery": "^3.5.1",
"mkdirp": "^1.0.4",
"photo-sphere-viewer": "^4.0.5",
"three": ">=0.125.0",
"uevent": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jely2002/easysphereviewer.git"
},
"build": {
"appId": "com.jelleglebbeek.easysphereviewer",
"productName": "Easy Sphere Viewer",
"copyright": "Copyright © 2020 Jelle Glebbeek",
"win": {
"target": "nsis",
"icon": "build/icon.png"
},
"mac": {
"target": "dmg",
"icon": "build/icon.icns",
"category": "public.app-category.utilities",
"identity": null
},
"linux": {
"target": "AppImage",
"executableName": "EasySphereViewer",
"icon": "build/",
"synopsis": "A cross-platform tool for viewing equirectangular and cubemap photos.",
"category": "utility",
"desktop": {
"Name": "Easy Sphere Viewer",
"Icon": "build/icon.png",
"Comment": "A cross-platform tool for viewing equirectangular and cubemap photos."
}
}
}
}