This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.32 KB
/
package.json
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
{
"name": "stepmania-song-manager",
"version": "0.4.0",
"description": "Download and update song packs for StepMania",
"productName": "StepMania Song Manager",
"author": {
"name": "Edward Ly",
"email": "edward.ly@pm.me"
},
"repository": "https://github.com/edward-ly/stepmania-song-manager",
"homepage": "https://github.com/edward-ly/stepmania-song-manager#readme",
"bugs": "https://github.com/edward-ly/stepmania-song-manager/issues",
"license": "MIT",
"private": true,
"scripts": {
"dev": "genversion --es6 version.js && quasar dev -m electron",
"lint": "prettier --write . && eslint --ext .js,.vue ./ --fix",
"icon": "icongenie generate -m electron -i src/assets/master-icon.png --skip-trim --quality 12",
"build": "genversion --es6 version.js && quasar build -m electron -P never",
"release": "genversion --es6 version.js && quasar build -m electron -P onTagOrDraft"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.45.0",
"@quasar/extras": "^1.12.2",
"auto-launch": "^5.0.5",
"axios": "^0.24.0",
"core-js": "^3.20.1",
"electron-updater": "^4.6.1",
"md5-file": "^5.0.0",
"quasar": "^2.4.2",
"vue-i18n": "^9.0.0-beta.0"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"css-what": "^5.0.1",
"dns-packet": "^1.3.4",
"glob-parent": "^5.1.2",
"hosted-git-info": "^3.0.8",
"is-svg": "^4.2.2",
"normalize-url": "^4.5.1",
"nth-check": "^2.0.1",
"path-parse": "^1.0.7",
"postcss": "^8.3.0",
"ws": "^7.5.0",
"xmldom": "^0.6.0",
"yargs-parser": "^20.2.9"
},
"devDependencies": {
"@quasar/app": "^3.2.6",
"babel-eslint": "^10.0.1",
"electron": "^16.0.5",
"electron-builder": "^22.14.5",
"electron-packager": "^15.4.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-vue": "^7.0.0",
"eslint-webpack-plugin": "^2.4.0",
"genversion": "^2.3.1",
"prettier": "2.5.1"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 10.18.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}