-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.85 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "fyagent",
"private": true,
"description": "Personal desktop control center for AI Workers and Agents",
"type": "module",
"packageManager": "pnpm@10.12.3",
"scripts": {
"dev": "node scripts/tasks/host-native.mjs dev",
"build": "node scripts/tasks/host-native.mjs build",
"tauri": "tauri",
"version:get": "node scripts/version.mjs get",
"version:check": "node scripts/version.mjs check",
"version:set": "node scripts/version.mjs set",
"version:bump": "node scripts/version.mjs bump",
"dev:renderer": "vite --config config/vite.config.ts",
"build:renderer": "vite build --config config/vite.config.ts && node scripts/verify-route-chunks.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests/renderer tests/browser config",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,json}\" \"config/*.{ts,cjs}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,css,json}\" \"config/*.{ts,cjs}\"",
"test:unit": "node --throw-deprecation ./node_modules/vitest/vitest.mjs run --config config/vitest.config.ts",
"test:unit:watch": "node --throw-deprecation ./node_modules/vitest/vitest.mjs watch --config config/vitest.config.ts",
"test:browser": "pnpm build:renderer && playwright test --config config/playwright.performance.config.ts --grep 'production boots' && playwright test --config config/playwright.config.ts",
"test:performance": "playwright test --config config/playwright.performance.config.ts",
"test:desktop:mock": "node --throw-deprecation ./node_modules/vitest/vitest.mjs run --config config/vitest.config.ts tests/desktop-acceptance && node --throw-deprecation scripts/desktop-acceptance/verify-mock-contract.mjs",
"test:native-fetch": "node --pending-deprecation --throw-deprecation ./node_modules/vitest/vitest.mjs run --config config/vitest.config.ts tests/msw/nativeFetchTauriMock.test.ts",
"test:desktop:visual:preflight": "node --throw-deprecation scripts/desktop-acceptance/verify-visual-baseline-manifest.mjs",
"test:desktop:visual:update": "node --throw-deprecation scripts/desktop-acceptance/review-visual-baseline-update.mjs"
},
"keywords": [],
"author": "NongHua123",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@axe-core/playwright": "4.13.0",
"@eslint/js": "10.0.1",
"@playwright/test": "1.62.1",
"@tauri-apps/cli": "^2.8.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jsdom": "21.1.7",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.20",
"code-inspector-plugin": "^1.3.3",
"dependency-cruiser": "18.2.0",
"eslint": "10.8.1",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.4",
"globals": "17.10.0",
"jsdom": "^25.0.0",
"msw": "^2.11.6",
"postcss": "^8.5.23",
"prettier": "^3.6.2",
"typescript": "^5.3.0",
"typescript-eslint": "8.67.0",
"vite": "^7.3.6",
"vitest": "^3.2.7"
},
"dependencies": {
"@phosphor-icons/react": "2.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@samasante/liquid-glass": "0.1.1",
"@tanstack/react-query": "^5.90.3",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-log": "2.8.0",
"clsx": "^2.1.1",
"framer-motion": "^12.43.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resizable-panels": "4.12.3",
"react-router-dom": "7.18.2",
"smol-toml": "^1.6.1",
"zod": "^4.1.12"
}
}