-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.68 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
{
"name": "glance-bar",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:showcase": "vite --open /showcase",
"build": "tsc -b && vite build",
"qa": "npm run test:vitest && npm run qa:showcase:interactions && npm run build",
"qa:showcase:screenshots": "npx playwright screenshot --viewport-size=1366,768 http://127.0.0.1:5173/showcase output/playwright/showcase-1366.png && npx playwright screenshot --viewport-size=1440,900 http://127.0.0.1:5173/showcase output/playwright/showcase-1440.png && npx playwright screenshot --viewport-size=1920,1080 http://127.0.0.1:5173/showcase output/playwright/showcase-1920.png",
"qa:showcase:interactions": "node scripts/qa-showcase-interactions.mjs",
"test:vitest": "vitest run --reporter=verbose",
"test:vitest:state": "vitest run --reporter=verbose src/state",
"test:vitest:providers": "vitest run --reporter=verbose src/providers",
"test:vitest:runtime": "vitest run --reporter=verbose src/runtime src/data",
"preview": "vite preview",
"desktop:mock": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/desktop-mock.ps1",
"tauri": "tauri",
"lint": "eslint src --max-warnings=0",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,json}\"",
"typecheck": "tsc -b --noEmit"
},
"dependencies": {
"@tauri-apps/api": "^2.11.0",
"@vitejs/plugin-react": "^5.0.0",
"framer-motion": "^12.23.12",
"i18next": "^26.3.1",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^0.468.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "^17.0.8",
"typescript": "^5.9.2",
"vite": "^7.1.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.19.21",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"@vitest/coverage-v8": "^4.1.8",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-unused-imports": "^4.4.1",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"postcss": "^8.4.49",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^3.4.17",
"tsx": "^4.22.4",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.8"
}
}