-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.28 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
{
"name": "pullwatch",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"icons": "node scripts/generate-extension-icons.mjs",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.node.json && vite build",
"zip": "npm run build && node scripts/zip-extension.mjs",
"build:analyze": "tsc -p tsconfig.json && tsc -p tsconfig.node.json && vite build --mode analyze && explorer dist/stats.html",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"canary:test": "vitest run --config vitest.canary.config.ts",
"test:remote-patterns": "vitest run --config vitest.remote-patterns.config.ts",
"test:remote-patterns:production": "vitest run --config vitest.remote-patterns.config.ts --mode production",
"test:remote-patterns:production:parity": "vitest run --config vitest.remote-patterns.config.ts --mode production-parity",
"test:remote-patterns:staging": "vitest run --config vitest.remote-patterns.config.ts --mode staging",
"docs:dev": "npm --prefix docs run dev",
"docs:build": "npm --prefix docs run build",
"docs:check": "npm --prefix docs run check"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@react-spring/web": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.81.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-focus-lock": "^2.13.7",
"react-hook-form": "^7.71.1",
"tailwindcss": "^4.2.2",
"valibot": "^1.3.1",
"zustand": "^5.0.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/react": "^16.3.2",
"@types/chrome": "^0.0.326",
"@types/node": "^22.15.29",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser": "^4.1.2",
"@vitest/ui": "^4.1.2",
"daisyui": "^5.0.43",
"googleapis": "^171.4.0",
"happy-dom": "^20.8.9",
"oxlint": "^1.57.0",
"playwright": "^1.58.2",
"rollup-plugin-visualizer": "^7.0.1",
"sharp": "^0.33.5",
"typescript": "~5.8.3",
"vite": "^8.0.3",
"vite-plugin-static-copy": "^4.0.0",
"vitest": "^4.1.2"
}
}