-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.7 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "lyrix",
"version": "1.0.0",
"author": {
"name": "Klaudiusz Dembler",
"email": "[email protected]"
},
"description": "Status bar app to quickly get lyrics for the currently playing Spotify song",
"keywords": [
"spotify",
"lyrics",
"genius",
"music"
],
"license": "MIT",
"main": "main/index.js",
"productName": "lyrix",
"scripts": {
"dev": "concurrently \"yarn dev:vite\" \" yarn dev:electron\"",
"dev:vite": "vite",
"dev:electron": "yarn run build:electron && electron .",
"build": "yarn run build:vite && yarn run build:electron",
"build:vite": "vite build",
"build:electron": "tsc -p electron",
"dist": "yarn run build && electron-builder",
"run-dist": "./dist/mac/lyrix.app/Contents/MacOS/lyrix",
"pack": "yarn run build && electron-builder --dir",
"clean": "rimraf dist main src/out",
"type-check": "tsc",
"lint": "eslint . --ext js,jsx,ts,tsx",
"lint:fix": "eslint . --ext js,jsx,ts,tsx --fix"
},
"dependencies": {
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/line-clamp": "^0.2.2",
"@types/qs": "^6.9.7",
"@vitejs/plugin-react-refresh": "^1.3.6",
"axios": "^0.23.0",
"classnames": "^2.3.1",
"electron-is-dev": "^2.0.0",
"electron-shared-state": "^1.0.0",
"keytar": "^7.7.0",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.6.10",
"vite-plugin-checker": "^0.3.4",
"winston": "^3.3.3",
"zustand": "^3.6.4"
},
"devDependencies": {
"@types/babel__code-frame": "^7.0.3",
"@types/babel__core": "^7.1.16",
"@types/node": "^16.10.2",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"autoprefixer": "^10.3.6",
"concurrently": "^6.3.0",
"electron": "^15.3.0",
"electron-builder": "^22.10.5",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.3.8",
"prettier": "2.4.1",
"tailwindcss": "^2.2.17",
"typescript": "^4.4.3",
"vite-plugin-svgr": "^0.4.0"
},
"build": {
"asar": true,
"files": [
"main",
"src/out"
],
"extraResources": [
"./assets/**"
],
"directories": {
"buildResources": "resources"
},
"appId": "dev.kdembler.lyrix",
"productName": "Lyrix",
"protocols": [
{
"name": "lyrix auth link",
"schemes": [
"lyrix"
]
}
],
"mac": {
"category": "public.app-category.Reference"
}
}
}