-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.14 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
{
"name": "JS Software UI",
"version": "0.0.1",
"description": "Kitchen sink showcase of Solid UI components",
"type": "module",
"scripts": {
"start": "rsbuild dev",
"dev": "rsbuild dev",
"typecheck": "tsc --noEmit",
"build": "bun run typecheck && rsbuild build && bun cleanup.js",
"build:apps": "rsbuild build",
"qa:production-policy": "bun scripts/verify-production-policy.mjs",
"preview": "rsbuild preview",
"prepare": "husky",
"lint": "biome check .",
"format": "biome format . --write",
"commit": "cz",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"biome check --apply"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/cz-commitlint": "^19.8.1",
"@iconify-json/lucide": "^1.2.127",
"@iconify-json/mdi": "^1.2.3",
"@iconify/tailwind4": "^1.0.6",
"@pathscale/ui": "^3.2.3",
"@rsbuild/core": "^1.3.20",
"@rsbuild/plugin-babel": "^1.0.5",
"@solidjs/router": "2.0.0-next.19",
"@tailwindcss/postcss": "^4.1.7",
"@tauri-apps/cli": "^2.5.0",
"@types/chroma-js": "^3.1.1",
"@types/node": "^22.15.17",
"babel-preset-solid": "^2.0.0-rc.2",
"biome": "^0.3.3",
"chroma-js": "^3.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commitizen": "^4.3.0",
"compression-webpack-plugin": "^11.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prismjs": "^1.30.0",
"rsbuild-plugin-solid-layouts": "^0.2.1",
"solid-icons": "^1.1.0",
"solid-js": "2.0.0-rc.4",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.0.7",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.2.9",
"typescript": "^5.7.2"
},
"dependencies": {
"@solidjs/web": "2.0.0-rc.4",
"popmotion": "^11.0.5",
"solid-layouts": "^0.2.4",
"zod": "^4.4.3"
},
"overrides": {
"@solidjs/signals": "2.0.0-rc.4",
"babel-preset-solid": "^2.0.0-rc.2"
}
}