-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "skin-downloader",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"start": "electron dist/main.js",
"dev": "tsc && electron .",
"package": "electron-builder -w"
},
"build": {
"appId": "com.cacti.skinDownloader",
"copyright": "Copyright (c) 2025 CactiFX",
"productName": "Skin Downloader",
"directories": {
"output": "releases/${platform}/${arch}"
},
"files": [
"assets/",
"dist/**/*",
"wwwroot/**/*"
],
"extraResources": [
{
"from": "wwwroot",
"to": "wwwroot",
"filter": [
"**/*"
]
}
],
"win": {
"icon": "assets/icon.ico"
}
},
"keywords": [],
"author": "CactiFX <fxcacti@gmail.com>",
"license": "MIT",
"description": "A simple and customizable minecraft java skin downloader.",
"type": "module",
"devDependencies": {
"@types/electron": "^1.4.38",
"@types/express": "^5.0.0",
"@types/node": "^22.13.0",
"electron": "^34.0.2",
"electron-builder": "^25.1.8",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
}
}