forked from t-mart/mousehole
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 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
{
"name": "mousehole",
"version": "0.3.0",
"type": "module",
"private": true,
"main": "src/index.tsx",
"module": "src/index.tsx",
"scripts": {
"dev": "PUBLIC_GIT_HASH=$(git rev-parse --short HEAD) bun run --hot --no-clear-screen src/index.tsx",
"start": "NODE_ENV=production bun src/index.tsx",
"lint": "eslint src",
"check-types": "tsc --noEmit"
},
"imports": {
"#*": "./src/*"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^2.13.0",
"@eslint/js": "^9.39.4",
"@types/bun": "^1.3.14",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@types/negotiator": "^0.6.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^17.6.0",
"typescript-eslint": "^8.59.3"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@tanstack/react-query": "^5.100.10",
"bun-plugin-tailwind": "^0.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"motion": "^12.38.0",
"negotiator": "^1.0.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"temporal-polyfill": "^0.3.2",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
}
}