-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "better-search",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx scripts/build.ts --watch",
"build": "tsx scripts/build.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"package": "npm run build && cd dist && zip -r ../bettersearch.zip ."
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/roboto": "^5.2.10",
"@tailwindcss/vite": "^4.2.2",
"minisearch": "^7.1.1",
"radix-ui": "^1.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shadcn": "^4.1.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/chrome": "^0.0.287",
"@types/node": "^25.5.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^9.2.1",
"jsdom": "^25.0.1",
"lucide-react": "^0.468.0",
"playwright": "^1.49.1",
"tailwind-merge": "^2.6.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "^2.1.8"
}
}