-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.92 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
{
"name": "react-keyboards",
"version": "2.0.1",
"type": "module",
"description": "A premium on-screen mechanical keyboard React component with realistic key animations and sound profiles.",
"homepage": "https://react-keyboards.mohammadafnan.tech/",
"repository": {
"type": "git",
"url": "git+https://github.com/HyperAfnan/react-keyboard.git"
},
"main": "dist/react-keyboards.umd.cjs",
"module": "dist/react-keyboards.js",
"types": "dist/lib/main.d.ts",
"exports": {
".": {
"import": "./dist/react-keyboards.js",
"require": "./dist/react-keyboards.umd.cjs",
"types": "./dist/lib/main.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"build": "npm run build:lib && npm run build:demo",
"build:lib": "tsc -b && vite build",
"build:demo": "vite build --mode demo",
"lint": "eslint .",
"test": "vitest run",
"preview": "vite preview"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@tabler/icons-react": "^3.44.0",
"clsx": "^2.1.1",
"howler": "^2.2.4",
"tailwind-merge": "^3.6.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.0",
"@types/howler": "^2.2.12",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.5.0",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwindcss": "^4.3.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.10",
"vite-plugin-css-injected-by-js": "^5.0.1",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.7"
}
}