-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
62 lines (62 loc) · 1.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
{
"name": "elephicon",
"productName": "Elephicon",
"description": "Elephicon generates Apple ICNS and Microsoft ICO files from PNG files.",
"version": "3.1.2",
"license": "MIT",
"author": {
"name": "sprout2000"
},
"repository": {
"type": "git",
"url": "[email protected]:sprout2000/elephicon.git"
},
"main": "dist/main.js",
"scripts": {
"dev": "rimraf dist && run-p dev:webpack dev:electron",
"dev:webpack": "cross-env NODE_ENV=\"development\" webpack --progress",
"dev:electron": "wait-on ./dist/index.html ./dist/main.js && electronmon .",
"build": "rimraf dist && cross-env NODE_ENV=\"production\" webpack --progress",
"lint": "biome check --write .",
"release": "ts-node scripts/builder.ts"
},
"dependencies": {
"electron-log": "^5.2.2",
"electron-store": "^10.0.0",
"electron-updater": "^6.3.9",
"i18next": "^23.16.4",
"localforage": "^1.10.0",
"mime-types": "^2.1.35",
"png2icons": "^2.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typeface-roboto": "^1.1.13"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"electron": "^33.2.0",
"electron-builder": "^24.13.3",
"electronmon": "^2.0.3",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"wait-on": "^8.0.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}