-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 859 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 859 Bytes
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
{
"name": "hsl-picker",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome check src --max-diagnostics=0",
"preview": "vite preview",
"deploy": "./deploy.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"culori": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"jsdom": "^26.1.0",
"rollup-plugin-visualizer": "^5.14.0",
"vite": "^7.0.0",
"vitest": "^3.1.2"
},
"resolutions": {
"esbuild": "0.25.3"
},
"packageManager": "yarn@4.9.1"
}