-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.3 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.3 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
{
"name": "Sonosano",
"version": "0.3.3",
"description": "P2P Song Player",
"main": "./out/main/main.js",
"license": "Apache-2.0 license",
"author": {
"name": "KRSHH",
"url": "https://github.com/KRSHH/Sonosano"
},
"scripts": {
"dev": "electron-vite dev",
"build": "node scripts/build-backend.js && electron-vite build",
"build:frontend": "electron-vite build",
"start": "electron-builder --dir",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx --fix",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux",
"build:all": "npm run build && electron-builder -wml",
"prepare": "husky"
},
"engines": {
"npm": ">=8.0.0",
"yarn": "please-use-npm",
"pnpm": "please-use-npm"
},
"repository": {
"type": "git",
"url": "https://github.com/KRSHH/Sonosano"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@tanstack/react-query": "^5.90.2",
"bootstrap": "^5.3.8",
"clsx": "^2.1.1",
"electron-updater": "^6.6.2",
"extract-colors": "^4.2.1",
"fuse.js": "^7.1.0",
"i18next": "^25.5.2",
"react-i18next": "^15.7.3",
"react-router-dom": "^7.9.2",
"react-transition-group": "^4.4.5",
"tailwind-merge": "^3.3.1",
"tree-kill": "^1.2.2",
"zod": "^4.1.3"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@eslint/js": "^9.34.0",
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^24.5.2",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.8",
"@vitejs/plugin-react": "^5.0.1",
"electron": "^37.3.1",
"electron-builder": "^26.0.12",
"electron-vite": "^4.0.0",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.3"
}
}