-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 2.98 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
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
117
118
119
{
"name": "stagstation",
"version": "1.0.0",
"description": "Save tool for Hollow Knight & Silksong",
"main": "main.js",
"homepage": "./",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron": "electron .",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron . --dev\"",
"start": "npm run build && electron .",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win --config.win.signAndEditExecutable=false",
"dist:mac": "npm run build && electron-builder --mac",
"dist:linux": "npm run build && electron-builder --linux --config.linux.target=deb",
"dist:all": "npm run build && electron-builder --win --mac --linux"
},
"keywords": [
"hollow-knight",
"silksong",
"save-converter"
],
"author": {
"name": "dizzyfrogs",
"url": "https://github.com/dizzyfrogs"
},
"license": "MIT",
"build": {
"appId": "com.stagstation.app",
"productName": "Stagstation",
"directories": {
"output": "dist-packages"
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"converter.js",
"cloud-sync.js",
"package.json",
"assets/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
},
{
"target": "portable",
"arch": ["x64"]
}
],
"icon": "assets/icon.ico",
"forceCodeSigning": false
},
"mac": {
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
],
"icon": "assets/icon.icns",
"category": "public.app-category.utilities"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": ["x64"]
},
{
"target": "deb",
"arch": ["x64"]
}
],
"icon": "assets/icon.png",
"category": "Utility",
"synopsis": "Save tool for Hollow Knight & Silksong",
"maintainer": "dizzyfrogs <dizzyfrogs@users.noreply.github.com>"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"electron": "^28.0.0",
"electron-builder": "^26.0.12",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"vite": "^5.0.8",
"wait-on": "^7.2.0"
},
"dependencies": {
"@mantine/core": "^7.5.0",
"@mantine/hooks": "^7.5.0",
"@mantine/notifications": "^7.5.0",
"@monaco-editor/react": "^4.7.0",
"@tabler/icons-react": "^3.0.0",
"adm-zip": "^0.5.16",
"googleapis": "^165.0.0",
"lucide-react": "^0.294.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}