-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.03 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.03 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
{
"name": "text-highlighter-component",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "A React component using CSS Custom Highlight API for text highlighting",
"keywords": [
"react",
"highlight",
"text",
"search",
"css",
"component",
"shadcn"
],
"author": "Junaid Anjum",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/junaidanjum/text-highlight.git"
},
"bugs": {
"url": "https://github.com/junaidanjum/text-highlight/issues"
},
"homepage": "https://github.com/junaidanjum/text-highlight#readme",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && cp dist/index.html dist/404.html",
"lint": "eslint .",
"preview": "vite preview",
"registry:build": "shadcn build",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.1.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
"motion": "^12.23.24",
"prism-react-renderer": "^2.4.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@tailwindcss/postcss": "^4.1.14",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"jsdom": "^29.0.1",
"postcss": "^8.5.6",
"shadcn": "^3.5.0",
"tailwindcss": "^4.1.14",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7",
"vitest": "^4.1.2"
}
}