-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.1 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.1 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
{
"name": "museeks",
"productName": "Museeks",
"version": "0.23.4",
"description": "A simple, clean, and cross-platform music player.",
"type": "module",
"bugs": {
"url": "https://github.com/martpie/museeks/issues"
},
"author": "Pierre de la Martinière <pierre.de.la.martiniere@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/martpie/museeks"
},
"scripts": {
"dev": "vp dev",
"build": "vp build",
"preview": "vp preview",
"tauri": "tauri",
"gen:types": "bash scripts/gen.sh",
"gen:translations": "lingui extract --clean --overwrite",
"test:typings": "tsc --noEmit --project ./tsconfig.json",
"package:checksums": "bash scripts/checksum.sh",
"clippy": "cargo clippy --manifest-path src-tauri/Cargo.toml",
"postinstall": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "vp run gen:translations && git add src/translations"
},
"dependencies": {
"@base-ui/react": "1.3.0",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "9.0.0",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@lingui/core": "5.9.3",
"@lingui/react": "5.9.3",
"@stylexjs/stylex": "0.18.1",
"@tanstack/react-query": "5.95.2",
"@tanstack/react-router": "1.168.3",
"@tanstack/react-virtual": "3.13.23",
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-clipboard-manager": "2.3.2",
"@tauri-apps/plugin-dialog": "2.6.0",
"@tauri-apps/plugin-fs": "2.4.5",
"@tauri-apps/plugin-log": "2.8.0",
"@tauri-apps/plugin-notification": "2.3.3",
"@tauri-apps/plugin-opener": "2.5.3",
"@tauri-apps/plugin-os": "2.3.2",
"@tauri-apps/plugin-process": "2.3.1",
"browserslist": "4.28.1",
"eventemitter3": "5.0.4",
"lodash-es": "4.17.23",
"nanoid": "5.1.7",
"normalize.css": "8.0.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-keybinding-component": "2.3.1",
"semver": "7.7.4",
"zustand": "5.0.12"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.29.0",
"@lingui/babel-plugin-lingui-macro": "5.9.3",
"@lingui/cli": "5.9.3",
"@lingui/vite-plugin": "5.9.3",
"@rolldown/plugin-babel": "0.2.2",
"@stylexjs/eslint-plugin": "0.18.1",
"@stylexjs/unplugin": "0.18.1",
"@tanstack/router-plugin": "1.167.4",
"@tauri-apps/cli": "2.10.1",
"@types/lodash-es": "4.17.12",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/semver": "7.7.1",
"@vitejs/plugin-react": "6.0.1",
"lightningcss": "1.32.0",
"playwright": "1.58.2",
"simple-git-hooks": "2.13.1",
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.14",
"vite-plugin-svgr": "4.5.0",
"vite-plus": "0.1.14",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.14",
"vitest-browser-react": "2.1.0"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.14",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.14"
},
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks"
]
}
}