-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.48 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
{
"name": "clone-hero-song-companion",
"version": "1.0.8",
"description": "A companion application for Clone Hero to search and download songs from enchor.us",
"main": "dist/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:main\" \"npm run dev:renderer\"",
"dev:main": "tsc -p tsconfig.main.json && NODE_ENV=development electron dist/main.js",
"dev:renderer": "vite",
"build": "npm run build:main && npm run build:renderer",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"type-check": "tsc --noEmit -p tsconfig.main.json",
"build:all": "npm run build && electron-builder",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:mac-x64": "npm run build && electron-builder --mac --x64",
"build:mac-arm64": "npm run build && electron-builder --mac --arm64",
"build:linux": "npm run build && electron-builder --linux",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [
"clone-hero",
"music",
"guitar-hero",
"electron",
"vue"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"@vitejs/plugin-vue": "^4.5.0",
"concurrently": "^8.2.2",
"electron": "^27.1.3",
"electron-builder": "^24.8.1",
"typescript": "^5.3.2",
"vite": "^5.0.5",
"vue": "^3.3.8",
"vue-tsc": "^1.8.22"
},
"dependencies": {
"active-win": "^8.2.1",
"axios": "^1.6.2",
"cheerio": "^1.0.0-rc.12",
"electron-squirrel-startup": "^1.0.1",
"extract-zip": "^2.0.1",
"fs-extra": "^11.1.1"
},
"build": {
"appId": "com.yourname.clone-hero-companion",
"productName": "Clone Hero Song Companion",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"assets/**/*"
],
"asarUnpack": [
"node_modules/active-win/**/*"
],
"icon": "assets/icons/icon.png",
"mac": {
"category": "public.app-category.music",
"icon": "assets/icons/chsc.iconset"
},
"win": {
"icon": "assets/icons/chsc.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"icon": "assets/icons/chsc_512x512.png",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
}
}
}