-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "ArcherMeta",
"version": "2.2.0",
"author": "Archer HRC Team",
"description": "A desktop tool for Mac, Windows, and Linux for viewing, analyzing, and exporting photo and video metadata offline.",
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "install-app-deps",
"rebuild": "electron-rebuild -f -w sqlite3",
"dist": "build --win --mac --linux"
},
"productName": "Archer Meta",
"repository": "https://github.com/archerimpact/Meta",
"devDependencies": {
"electron": "~1.7.8",
"electron-builder": "^20.9.0",
"electron-packager": "^11.1.0",
"electron-rebuild": "^1.7.3"
},
"dependencies": {
"async": "^2.6.1",
"chart.js": "^2.7.2",
"choices.js": "^3.0.4",
"exiftool-vendored": "^4.20.0",
"material-design-icons": "^3.0.1",
"mustache": "^2.3.0",
"npm": "^6.0.0",
"sqlite3": "^4.0.0"
},
"build": {
"appId": "com.archer.meta",
"mac": {
"category": "public.app-category.photography",
"icon": "./assets/archerlogoa.png.icns"
},
"win": {
"icon": "./assets/archerlogoa.png.ico",
"target": "NSIS"
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"asar": false
}
}