-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.wip
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json.wip
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "editorperrepo",
"productName": "EditorPerRepo",
"version": "1.1.1",
"description": "Open a different editor for each repo when using GitHub Desktop's editor integration feature!",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"dist:dir": "electron-builder --dir -c.compression=store -c.mac.idenetify=null",
"forge-start": "electron-forge start .",
"forge-package": "electron-forge package --arch=ia32",
"forge-make": "electron-forge make --arch=ia32",
"forge-publish": "electron-forge publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rynstwrt/EditorPerRepoElectron.git"
},
"keywords": [
"github",
"repo",
"editor",
"editorperrepo",
"IDE",
"ideperrepo",
"electron"
],
"author": "Ryn Stewart",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/rynstwrt/EditorPerRepoElectron/issues"
},
"homepage": "https://github.com/rynstwrt/EditorPerRepoElectron",
"devDependencies": {
"@electron-forge/cli": "^7.7.0",
"@electron-forge/maker-squirrel": "^7.7.0",
"@electron-forge/publisher-github": "^7.7.0",
"electron": "^35.0.1",
"electron-builder": "^25.1.8",
"electron-reload": "^2.0.0-alpha.1",
"electron-reloader": "^1.2.3"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.1",
"minimist": "^1.2.8"
},
"postinstall": "electron-builder install-app-deps",
"build": {
"appId": "art.rynstew.editorperrepo",
"files": [
"!**/media",
"!**/out",
"!**/README.md"
],
"icon": "assets/icons/epr/epr-icon.png"
}
}