-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
204 lines (204 loc) · 5.8 KB
/
Copy pathpackage.json
File metadata and controls
204 lines (204 loc) · 5.8 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
{
"name": "sight-kick",
"description": "Play your favorite Clone Hero drum tracks",
"version": "0.1.0",
"keywords": [
"clonehero",
"drums",
"sheetmusic",
"guitarhero",
"rockband"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tonygoldcrest/sightkick.git"
},
"license": "MIT",
"author": {
"name": "Anton Korolkov",
"email": "peancored@gmail.com"
},
"main": "./out/main/index.js",
"scripts": {
"build": "electron-vite build",
"postinstall": "node scripts/postinstall.js",
"lint": "cross-env NODE_ENV=development eslint . --cache --cache-strategy content",
"lint:fix": "cross-env NODE_ENV=development eslint . --cache --cache-strategy content --fix",
"package": "yarn build && electron-builder build --mac --publish never",
"package:win": "yarn build && electron-builder build -w --x64 --publish never",
"package:linux": "yarn build && electron-builder build -l --x64 --publish never",
"rebuild": "electron-rebuild --parallel --types prod,dev,optional",
"start": "cross-env SK_USER_DATA_DIR=./.userdata/main electron-vite dev",
"start:clean": "node scripts/clean-userdata.js && cross-env SK_USER_DATA_DIR=./.userdata/clean electron-vite dev",
"preview": "cross-env SK_USER_DATA_DIR=./.userdata/preview electron-vite preview",
"preview:clean": "node scripts/clean-userdata.js && cross-env SK_USER_DATA_DIR=./.userdata/clean electron-vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "yarn build && playwright test",
"test:e2e:only": "playwright test"
},
"browserslist": [],
"prettier": {
"singleQuote": true,
"overrides": [
{
"files": [
".prettierrc",
".eslintrc"
],
"options": {
"parser": "json"
}
}
]
},
"dependencies": {
"@ant-design/icons": "^6.2.5",
"@eliwhite/parse-sng": "^4.0.3-eliwhite.0",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^3.3.1",
"@julusian/midi": "^3.6.1",
"@tanstack/react-virtual": "^3.13.2",
"antd": "^6.4.4",
"clsx": "^2.1.1",
"dompurify": "^3.4.13",
"electron-debug": "^3.2.0",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
"electron-updater": "^6.8.9",
"es-toolkit": "^1.47.1",
"fuse.js": "^7.0.0",
"ini": "^4.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.18.1",
"scan-chart": "^8.0.1",
"tailwind-merge": "^3.6.0",
"use-debounce": "^10.0.0",
"vexflow": "^4.2.3"
},
"devDependencies": {
"@electron/notarize": "^2.1.0",
"@electron/rebuild": "^4.0.4",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@storybook/react": "^10.0.0",
"@storybook/react-vite": "^10.0.0",
"@tailwindcss/vite": "^4.3.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.0.0",
"@types/glob": "^8.1.0",
"@types/ini": "^4.1.0",
"@types/node": "20.6.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^4.1.9",
"cross-env": "^7.0.3",
"electron": "^42.0.0",
"electron-builder": "^26.0.4",
"electron-devtools-installer": "^4.0.0",
"electron-vite": "^5.0.0",
"eslint": "^10.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-erb": "^4.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.7.0",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^29.1.1",
"prettier": "^3.0.3",
"sass": "^1.67.0",
"storybook": "^10.0.0",
"tailwindcss": "^4.3.1",
"ts-node": "^10.9.1",
"typescript": "^6.0.3",
"vite": "^7.0.0",
"vitest": "^4.1.11"
},
"build": {
"productName": "SightKick",
"buildVersion": "0.1.0",
"appId": "org.sk.SightKick",
"asar": true,
"asarUnpack": "**\\*.{node,dll}",
"files": [
"out/**",
"node_modules/**",
"package.json"
],
"afterSign": "scripts/notarize.js",
"mac": {
"target": {
"target": "default",
"arch": [
"arm64",
"x64"
]
},
"type": "distribution",
"hardenedRuntime": true,
"entitlements": "assets/entitlements.mac.plist",
"entitlementsInherit": "assets/entitlements.mac.plist",
"gatekeeperAssess": false
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage"
],
"category": "Development"
},
"directories": {
"buildResources": "assets",
"output": "release/build"
},
"extraResources": [
"./assets/**"
],
"publish": {
"provider": "github",
"owner": "tonygoldcrest",
"repo": "sightkick"
}
},
"engines": {
"node": ">=14.x",
"npm": ">=7.x"
},
"packageManager": "yarn@4.17.0"
}