-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
107 lines (107 loc) · 4.58 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
102
103
104
105
106
107
{
"name": "tauri-start-solid",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"dev:ui": "NODE_ENV=development vite",
"build:mac:x64": "CI=true tauri build --target x86_64-apple-darwin",
"build:mac:arm": "CI=true tauri build --target aarch64-apple-darwin",
"build:mac:universal": "CI=true tauri build --target universal-apple-darwin",
"build:win:x64": "CI=true tauri build --target x86_64-pc-windows-msvc",
"build:win:arm": "CI=true tauri build --target aarch64-pc-windows-msvc",
"build:debug": "tauri build --debug",
"build:ui": "vite build",
"dev:storybook": "VITE_CJS_IGNORE_WARNING=true storybook dev -p 6006 --no-open",
"build:storybook": "VITE_CJS_IGNORE_WARNING=true storybook build -o .output/storybook",
"start:storybook": "pnpm dlx serve .output/storybook -l 6006 -n -C",
"check": "biome check . --write",
"lint": "biome lint . --write",
"format": "pnpm --stream --color \"/format:/\"",
"format:rs": "cargo fmt --manifest-path src-tauri/Cargo.toml",
"format:js": "biome format . --write",
"postinstall": "pnpm approve-builds && lefthook install || true",
"pre-commit": "lefthook run pre-commit --force",
"generate:icons": "tauri icon ./assets/images/app-icon.png",
"generate:signkey": "tauri signer generate -w .tauri/${npm_package_name}_signer.key",
"cleanup:deps": "pnpm dlx del-cli pnpm-lock.yaml node_modules src-tauri/Cargo.lock",
"cleanup:rs": "cargo clean --manifest-path src-tauri/Cargo.toml",
"cleanup:js": "pnpm dlx del-cli .{output,temp} dist tests-results",
"cleanup": "pnpm --stream --parallel \"/^cleanup:.*/\"",
"update-deps": "npm-check-updates --configFileName .ncurc.json",
"release:major": "rtk release -r major",
"release:minor": "rtk release -r minor",
"release:patch": "rtk release -r patch",
"test:rs": "cargo nextest --manifest-path src-tauri/Cargo.toml run",
"test:report": "pnpm dlx serve tests-results -l 8000 -s -n -C",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:js": "vitest --run",
"typecheck": "tsc -b --noEmit",
"tauri": "tauri"
},
"dependencies": {
"@ark-ui/solid": "^4.10.1",
"@nanostores/persistent": "^0.10.2",
"@nanostores/solid": "^0.5.0",
"@solidjs/router": "^0.15.3",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-http": "^2.3.0",
"@tauri-apps/plugin-log": "^2.2.1",
"@tauri-apps/plugin-notification": "^2.2.1",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-positioner": "^2.2.0",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-updater": "^2.5.0",
"consola": "^3.4.0",
"lucide-solid": "^0.475.0",
"nanostores": "^0.11.4",
"pathe": "^2.0.3",
"solid-js": "^1.9.4",
"std-env": "^3.8.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@solidjs/testing-library": "^0.8.10",
"@storybook/addon-a11y": "^8.5.7",
"@storybook/addon-essentials": "^8.5.7",
"@storybook/addon-links": "^8.5.7",
"@storybook/blocks": "^8.5.7",
"@storybook/core-events": "^8.5.7",
"@storybook/manager-api": "^8.5.7",
"@storybook/test": "^8.5.7",
"@storybook/theming": "^8.5.7",
"@tailwindcss/vite": "^4.0.7",
"@tauri-apps/cli": "^2.2.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.4",
"@vitest/coverage-v8": "^3.0.6",
"@vitest/ui": "^3.0.6",
"clsx": "^2.1.1",
"jsdom": "^26.0.0",
"lefthook": "^1.10.10",
"npm-check-updates": "^17.1.14",
"rtk": "^3.1.1",
"storybook": "^8.5.7",
"storybook-solidjs": "^1.0.0-beta.6",
"storybook-solidjs-vite": "^1.0.0-beta.6",
"tailwind-merge": "^3.0.1",
"tailwind-variants": "^0.3.1",
"tailwindcss": "^4.0.7",
"tailwindcss-motion": "^1.1.0",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-solid": "^2.11.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.6"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild", "lefthook"]
}
}