-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.47 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
{
"name": "summoner-desktop",
"private": true,
"version": "1.1.0-alpha.4",
"description": "Desktop GUI for Summoner",
"main": "dist/electron/main.js",
"author": "Remy Tuyeras <rtuyeras@summoner.org>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Summoner-Network/summoner-desktop.git"
},
"bugs": {
"url": "https://github.com/Summoner-Network/summoner-desktop/issues"
},
"homepage": "https://github.com/Summoner-Network/summoner-desktop#readme",
"type": "commonjs",
"scripts": {
"dev": "concurrently -k \"vite\" \"tsc -p tsconfig.electron.json -w\" \"wait-on http://localhost:5173 dist/electron/main.js && cross-env ELECTRON_RENDERER_URL=http://localhost:5173 electron .\"",
"build": "tsc -p tsconfig.electron.json && vite build",
"start": "electron .",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.electron.json --noEmit",
"dist": "npm run build && electron-builder --publish never",
"dist:mac": "npm run build && xattr -cr release dist assets || true && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --mac --publish never"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"tar": "^7.5.10",
"typescript": "^5.6.3",
"vite": "^7.3.1",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.summoner.desktop",
"productName": "Summoner Desktop",
"directories": {
"output": "release"
},
"files": [
"dist/**",
"package.json"
],
"extraResources": [
{
"from": "assets/summoner-geofit/maps",
"to": "maps"
},
{
"from": "assets/originals/summoner-logo-mark-gold-type.png",
"to": "assets/summoner-logo-mark-gold-type.png"
}
],
"mac": {
"icon": "assets/icons/logo_mage.icns",
"target": [
"dmg",
"zip"
],
"identity": null,
"hardenedRuntime": false,
"gatekeeperAssess": false
},
"win": {
"icon": "assets/icons/logo_mage.ico",
"target": [
"nsis",
"zip"
]
},
"linux": {
"icon": "assets/icons/logo_mage.png",
"target": [
"AppImage",
"deb"
]
}
}
}