forked from sprout2000/elephicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.8 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
{
"name": "elephicon",
"productName": "Elephicon",
"version": "0.18.7",
"description": "Elephicon generates Apple ICNS and Microsoft ICO files from PNG files.",
"author": "sprout2000",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:sprout2000/elephicon.git"
},
"bugs": {
"url": "https://github.com/sprout2000/elephicon/issues"
},
"keywords": [
"electron",
"ico",
"icns",
"png2icons",
"cross-platform"
],
"engines": {
"node": ">=14.10.0"
},
"main": "dist/main.js",
"scripts": {
"start": "run-s clean build serve",
"serve": "electron .",
"clean": "rimraf dist release",
"build": "cross-env NODE_ENV=\"development\" webpack --progress",
"build:prod": "cross-env NODE_ENV=\"production\" webpack --progress",
"build:unsign": "ts-node scripts/build-unsign.ts",
"build:darwin": "ts-node scripts/build.ts",
"build:appx": "ts-node scripts/build-appx.ts",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ext .ts,.tsx --fix",
"lint:prettier": "prettier --write .",
"package": "run-s clean build:prod build:unsign",
"package:appx": "run-s clean build:prod build:appx",
"package:darwin": "run-s clean build:prod build:darwin",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "yarn lint"
},
"dependencies": {
"electron-log": "^4.3.5",
"electron-store": "^8.0.0",
"electron-updater": "^4.3.9",
"i18next": "^20.3.2",
"mime-types": "^2.1.31",
"png2icons": "^2.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"typeface-roboto": "^1.1.13",
"ua-parser-js": "^0.7.28"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^8.0.0",
"@types/mime-types": "^2.1.0",
"@types/mini-css-extract-plugin": "^2.0.0",
"@types/node": "^15.14.0",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@types/ua-parser-js": "^0.7.36",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"dotenv": "^10.0.0",
"electron": "^13.1.5",
"electron-builder": "^22.11.7",
"electron-notarize": "^1.0.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"simple-git-hooks": "^2.5.1",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2"
}
}