-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.58 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.58 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
{
"name": "diff-viewer",
"version": "1.0.0",
"description": "A Git diff viewer for macOS - compare branches with side-by-side diffs",
"main": "src/main.js",
"homepage": "https://github.com/lukewduncan/diff-viewer",
"repository": {
"type": "git",
"url": "https://github.com/lukewduncan/diff-viewer.git"
},
"bugs": {
"url": "https://github.com/lukewduncan/diff-viewer/issues"
},
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build-mac": "electron-builder --mac",
"dist": "electron-builder --mac --publish=never",
"postinstall": "electron-builder install-app-deps",
"clean": "rm -rf dist node_modules package-lock.json && npm install"
},
"keywords": [
"git",
"diff",
"electron",
"developer-tools",
"code-review",
"version-control",
"macos",
"desktop-app"
],
"author": {
"name": "Luke Duncan",
"url": "https://github.com/lukewduncan"
},
"license": "MIT",
"devDependencies": {
"electron": "^38.2.1",
"electron-builder": "^24.6.4"
},
"dependencies": {
"diff2html": "^3.4.47",
"highlight.js": "^11.8.0",
"simple-git": "^3.19.1"
},
"build": {
"appId": "com.bigdawg.diffviewer",
"productName": "DiffViewer",
"directories": {
"output": "dist"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/DiffViewer.icns",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
}
}
}