-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.05 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
{
"name": "pudu-launcher",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run --passWithNoTests",
"preview": "vite preview",
"tauri": "tauri",
"generate-ts": "node tools/generate-ts-client.js",
"build-sidecar": "node tools/build-sidecar.js",
"build-sidecar:release": "node tools/build-sidecar.js --release",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint src/",
"check:react-compiler": "node tools/check-react-compiler.mjs"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/inter": "^5.2.8",
"@mui/icons-material": "^7.3.7",
"@mui/joy": "^5.0.0-beta.52",
"@mui/material": "^7.3.7",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"date-fns": "^4.1.0",
"motion": "^12.35.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-router": "^7.13.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@chromatic-com/storybook": "^5.0.1",
"@eslint/js": "^9.39.2",
"@storybook/addon-a11y": "^10.2.8",
"@storybook/addon-docs": "^10.2.8",
"@storybook/addon-onboarding": "^10.2.8",
"@storybook/addon-vitest": "^10.2.8",
"@storybook/react-vite": "^10.2.8",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.2",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"playwright": "^1.58.2",
"storybook": "^10.2.8",
"typescript": "~5.8.3",
"typescript-eslint": "^8.55.0",
"vite": "^7.0.4",
"vitest": "^4.0.18"
}
}