-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.68 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
{
"name": "sensi-mouse",
"version": "1.1.0",
"type": "module",
"scripts": {
"build": "typesafe-i18n --no-watch && tsc && vite build",
"check": "pnpm run i18n && concurrently -n tsc,eslint,deps pnpm:typecheck pnpm:lint pnpm:lint-deps",
"clean": "rm -rf dist node_modules pnpm-lock.yaml && cd src-tauri && cargo clean",
"dev": "vite",
"format:check": "dprint check",
"format:write": "dprint fmt",
"i18n": "typesafe-i18n --no-watch",
"lint": "pnpm run /^lint:/",
"lint:deps": "pnpm skott -m graph -e .ts,.tsx -s",
"lint:types": "tsc --noEmit -p .",
"list:unused": "ts-unused-exports ./tsconfig.json --excludePathsFromReport=src/i18n",
"preview": "vite preview",
"tauri": "tauri",
"todo": "leasot 'src/**/*.ts' 'src/**/*.tsx' 'scripts/**/*.ts'",
"update-version": "bun run --bun ./scripts/update_version.ts"
},
"dependencies": {
"@mantine/core": "7.3.0",
"@mantine/hooks": "7.3.0",
"@mantine/utils": "6.0.21",
"@swan-io/boxed": "1.2.0",
"@swan-io/chicane": "1.4.1",
"@tauri-apps/api": "1.5.1",
"@total-typescript/ts-reset": "0.5.1",
"core-js": "3.34.0",
"immer": "10.0.3",
"jotai": "2.6.0",
"jotai-immer": "0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"ress": "5.0.2",
"suspend-react": "0.1.3",
"tauri-plugin-autostart-api": "git://github.com/tauri-apps/tauri-plugin-autostart",
"tauri-plugin-store-api": "git://github.com/tauri-apps/tauri-plugin-store",
"throttle-debounce": "5.0.0",
"tiny-invariant": "1.3.1",
"ts-pattern": "5.0.6",
"zod": "3.22.4"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "0.9.2",
"@tauri-apps/cli": "1.5.7",
"@tsconfig/node20": "20.1.2",
"@tsconfig/strictest": "2.0.2",
"@types/node": "20.10.3",
"@types/react": "18.2.42",
"@types/react-dom": "18.2.17",
"@types/throttle-debounce": "5.0.2",
"@vanilla-extract/css": "1.14.0",
"@vanilla-extract/vite-plugin": "3.9.2",
"@vitejs/plugin-react-swc": "3.5.0",
"bun": "1.0.15",
"concurrently": "8.2.2",
"core-dts": "0.0.3",
"dprint": "0.43.2",
"eslint": "8.55.0",
"eslint-config-with-tsconfig": "2.9.120",
"leasot": "13.3.0",
"prettier": "3.1.0",
"sass": "1.69.5",
"skott": "0.31.3",
"ts-essentials": "9.4.1",
"typesafe-i18n": "5.26.2",
"typescript": "5.3.2",
"vite": "5.0.6",
"zx": "7.2.3"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@mantine/core": "latest",
"@mantine/hooks": "latest",
"@mantine/utils": "latest",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "latest",
"hasown": "npm:@nolyfill/hasown@latest"
}
}
}