-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 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
{
"name": "elephicon",
"productName": "Elephicon",
"description": "Elephicon generates Apple ICNS and Microsoft ICO files from PNG files.",
"version": "3.9.6",
"license": "MIT",
"author": {
"name": "sprout2000"
},
"repository": {
"type": "git",
"url": "git@github.com:sprout2000/elephicon.git"
},
"main": "dist/main.js",
"scripts": {
"dev": "rimraf dist && run-p dev:rspack dev:electron",
"dev:rspack": "rspack --node-env \"development\"",
"dev:electron": "wait-on ./dist/index.html ./dist/main.js && electronmon .",
"build": "rimraf dist && rspack --node-env \"production\"",
"lint": "biome check --write .",
"publish": "ts-node scripts/builder.ts"
},
"dependencies": {
"electron-log": "^5.4.3",
"electron-store": "^11.0.2",
"electron-updater": "^6.8.3",
"i18next": "^26.0.4",
"localforage": "^1.10.0",
"mime-types": "^3.0.2",
"png2icons": "^2.0.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typeface-roboto": "^1.1.13"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@rspack/cli": "^1.7.11",
"@rspack/core": "^1.7.11",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"css-loader": "^7.1.4",
"dotenv": "^17.4.1",
"electron": "^41.2.0",
"electron-builder": "^26.8.1",
"electronmon": "^2.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"sass": "^1.99.0",
"sass-loader": "^16.0.7",
"ts-node": "^10.9.2",
"typescript": "~6.0.2",
"wait-on": "^9.0.5"
}
}