-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "root",
"version": "0.0.0",
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"lefthook": "^2.0.15"
},
"description": "Monorepo for the Read for Speed extension and speed reader app",
"engines": {
"node": ">=24.11.0"
},
"private": true,
"scripts": {
"clean": "rm -rf node_modules bun.lock && bun run --filter './packages/*' clean",
"clean-install": "bun run clean && bun i --no-cache",
"dev:extensions": "bun --filter './packages/extensions' dev",
"dev:speed-reader": "bun --filter './packages/speed-reader' dev",
"lint": "biome check .",
"format": "biome format --write .",
"build:extensions": "bun --filter './packages/extensions' build",
"build:speed-reader": "bun --filter './packages/speed-reader' build",
"typecheck": "bun run --filter './packages/*' typecheck"
},
"type": "module",
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.1",
"tw-animate-css": "1.4.0",
"tailwind-merge": "^3.5.0",
"typescript": "^5.9.3",
"lucide-react": "^0.575.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"@biomejs/biome": "^2.4.4",
"@tailwindcss/vite": "^4.2.1",
"@base-ui/react": "^1.2.0",
"@types/node": "^24",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"usehooks-ts": "^3.1.1"
}
}
}