-
Notifications
You must be signed in to change notification settings - Fork 200
/
package.json
78 lines (78 loc) · 2.36 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
{
"name": "museeks",
"productName": "Museeks",
"version": "0.20.0",
"description": "A simple, clean and cross-platform music player.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/martpie/museeks"
},
"author": "Pierre de la Martinière <pierre.de.la.martiniere@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/martpie/museeks/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"gen": "bash scripts/gen.sh",
"test:typings": "tsc --noEmit --project ./tsconfig.json",
"test:unit": "bun test",
"test:lint": "biome ci .",
"test:lint:fix": "biome check --write .",
"package:checksums": "bash scripts/checksum.sh"
},
"browserslist": ["defaults"],
"dependencies": {
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@tanstack/react-query": "^5.59.15",
"@tanstack/react-virtual": "3.10.8",
"@tauri-apps/api": "2.0.3",
"@tauri-apps/plugin-dialog": "2.0.1",
"@tauri-apps/plugin-log": "2.0.0",
"@tauri-apps/plugin-notification": "2.0.0",
"@tauri-apps/plugin-os": "2.0.0",
"@tauri-apps/plugin-shell": "2.0.1",
"classnames": "^2.5.1",
"font-awesome": "^4.7.0",
"lodash": "^4.17.21",
"nanoid": "^5.0.7",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-fontawesome": "^1.7.1",
"react-keybinding-component": "^2.2.0",
"react-router-dom": "6.27.0",
"semver": "^7.6.3",
"zustand": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tauri-apps/cli": "2.0.4",
"@types/bun": "^1.1.11",
"@types/lodash": "^4.17.12",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-fontawesome": "^1.6.8",
"@types/semver": "^7.5.8",
"@vitejs/plugin-react": "^4.3.3",
"@welldone-software/why-did-you-render": "^8.0.3",
"autoprefixer": "^10.4.20",
"madge": "^8.0.0",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-nested": "^6.2.0",
"postcss-scss": "^4.0.9",
"postcss-url": "^10.1.3",
"typescript": "^5.6.3",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.4.9",
"vite-plugin-svgr": "^4.2.0"
}
}