-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
116 lines (116 loc) · 3.22 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "heic-converter",
"description": "Electron program to convert HEIC to PNG/JPG",
"version": "1.0.11",
"author": {
"name": "Antonio R"
},
"keywords": [
"electron",
"electron vuejs parcel",
"parcel",
"vuejs",
"heic to png"
],
"repository": {
"type": "git",
"url": "https://github.com/a133xz/electron-heic-png.git"
},
"license": "MIT",
"browserslist": [
"electron >= 9.0.4"
],
"targets": {
"main": false
},
"scripts": {
"serve": "yarn clean && concurrently \"cross-env BROWSER=none yarn vue:serve\" \"wait-on http://localhost:3000 && cross-env NODE_ENV=development electron . \"",
"build": "yarn vue:build",
"vue:serve": "parcel ./src/renderer/index.html -p 3000 --dist-dir build/renderer",
"vue:build": "cross-env NODE_ENV=production parcel build ./src/renderer/index.html --dist-dir build/renderer --public-url ./ --no-source-maps --no-scope-hoist",
"electron:build": "electron-builder build -c.mac.target=dir",
"build:local": "yarn clean && yarn build && yarn electron:build",
"clean": "rm -rf build/ .cache dist/ .parcel-cache",
"patch": "npm version patch -m \"v%s\"",
"postversion": "git push && git push --tags",
"prepare": "husky install",
"release:patch": "standard-version --release-as patch"
},
"standard-version": {
"skip": {
"bump": true,
"tag": true
}
},
"dependencies": {
"heic-convert": "^1.2.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.0.0",
"prettier": "^2.2.1",
"typescript": "~4.1.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@parcel/transformer-image": "2.0.0-nightly.2414",
"@parcel/transformer-sass": "2.0.0-beta.3.1",
"@parcel/transformer-vue": "2.0.0-beta.3.1",
"@vue/compiler-sfc": "^3.1.5",
"babel-eslint": "^10.1.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"electron": "^13.1.2",
"electron-builder": "^22.11.7",
"electron-debug": "^3.2.0",
"electron-reloader": "^1.2.1",
"husky": "^7.0.0",
"husky-init": "^7.0.0",
"parcel": "^2.0.0-beta.3.1",
"standard-version": "^9.3.0",
"vue": "^3.1.5",
"wait-on": "^5.0.0"
},
"main": "./src/main/index.js",
"build": {
"appId": "com.electron.electron-vuejs-parcel",
"productName": "HEIC Converter",
"compression": "maximum",
"files": [
"src/main/**/*",
"node_modules/**/*",
{
"from": "build/renderer",
"to": "src/renderer"
}
],
"mac": {
"icon": "src/renderer/icons/icon.icns",
"category": "public.app-category.productivity",
"identity": null
},
"win": {
"icon": "src/renderer/icons/icon.png",
"target": "portable"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
},
"homepage": "./"
}