-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.31 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.31 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
77
78
79
80
81
82
83
84
{
"name": "tint",
"version": "0.0.1",
"license": "MIT",
"description": "Color Picker and Editor PWA",
"author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"preview": "vite preview",
"test": "vitest",
"lint": "prettier -c . && eslint . --cache --max-warnings=0 && tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@preact/signals-react": "1.1.1",
"@radix-ui/react-checkbox": "1.0.0",
"@radix-ui/react-dialog": "1.0.0",
"@radix-ui/react-icons": "1.1.1",
"@radix-ui/react-label": "1.0.0",
"@radix-ui/react-select": "1.0.0",
"@radix-ui/react-separator": "1.0.0",
"@radix-ui/react-slider": "1.0.0",
"@radix-ui/react-tabs": "1.0.0",
"@radix-ui/react-toast": "1.0.0",
"@radix-ui/react-visually-hidden": "1.0.0",
"@unocss/reset": "0.45.22",
"clsx": "1.2.1",
"colord": "2.9.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"react-hotkeys-hook": "3.4.7"
},
"devDependencies": {
"@babel/core": "7.19.1",
"@hideoo/eslint-config": "0.9.0",
"@hideoo/prettier-config": "0.1.1",
"@hideoo/tsconfig": "0.1.0",
"@testing-library/react": "13.4.0",
"@types/prettier": "2.7.0",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@vitejs/plugin-react": "2.1.0",
"eslint": "8.23.1",
"husky": "8.0.1",
"jsdom": "20.0.0",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.13",
"typescript": "4.8.3",
"unocss": "0.45.22",
"unocss-preset-extra": "0.4.3",
"vite": "3.1.3",
"vite-plugin-pwa": "0.13.0",
"vite-tsconfig-paths": "3.5.0",
"vitest": "0.23.4",
"workbox-window": "6.5.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@7.12.1",
"private": true,
"sideEffects": false,
"keywords": [
"color",
"picker",
"editor",
"pwa",
"EyeDropper"
],
"homepage": "https://github.com/HiDeoo/tint",
"repository": {
"type": "git",
"url": "https://github.com/HiDeoo/tint.git"
},
"bugs": "https://github.com/HiDeoo/tint/issues",
"lint-staged": {
"**/*": "prettier -w -u --cache",
"**/*.{js,jsx,ts,tsx,cjs,mjs}": "eslint --cache --max-warnings=0"
}
}