-
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.57 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.57 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": "queuescope",
"version": "0.1.1",
"private": true,
"description": "Retailer-neutral local-first browser operations console for scheduled page observation and virtual-queue awareness.",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc --noEmit && vite build && npm run bundle:observer && node scripts/verify-build.mjs",
"bundle:observer": "node scripts/bundle-observer.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --max-warnings 0",
"check": "npm run lint && npm run test && npm run build",
"test:e2e": "node scripts/e2e-extension.mjs",
"serve": "vite preview --host 127.0.0.1 --port 4175 --strictPort",
"package": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/package-release.ps1"
},
"dependencies": {
"lucide-react": "0.468.0",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/chrome": "0.0.287",
"@types/node": "26.1.1",
"@types/react": "19.0.3",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "6.0.4",
"@vitest/coverage-v8": "4.1.10",
"esbuild": "0.28.1",
"eslint": "10.7.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"globals": "15.14.0",
"jsdom": "25.0.1",
"playwright-core": "1.54.1",
"typescript": "5.7.2",
"typescript-eslint": "8.65.0",
"vite": "8.1.5",
"vitest": "4.1.10"
},
"engines": {
"node": ">=20"
}
}