-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.08 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
{
"name": "cmtrace-open",
"version": "1.5.1",
"private": true,
"description": "Free, open-source CMTrace replacement: Windows log viewer with ConfigMgr/SCCM, Intune, and Autopilot ESP diagnostics",
"scripts": {
"frontend:dev": "vite",
"frontend:build": "tsc && vite build",
"frontend:preview": "vite preview",
"app:dev": "tauri dev",
"app:build:debug": "tauri build --debug",
"app:build:exe-only": "tauri build --no-bundle",
"app:build:lite": "tauri build --config src-tauri/tauri.lite.conf.json -- --no-default-features",
"app:build:release": "tauri build",
"dev": "npm run frontend:dev",
"build": "npm run frontend:build",
"preview": "npm run frontend:preview",
"tauri": "tauri",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"screenshots": "playwright test --config playwright.screenshots.config.ts"
},
"license": "MIT",
"type": "module",
"dependencies": {
"@fluentui/react-charts": "^9.3.22",
"@fluentui/react-components": "^9.74.4",
"@fluentui/react-icons": "^2.0.334",
"@tanstack/react-virtual": "^3.14.9",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.10.1",
"@tauri-apps/plugin-window-state": "^2.4.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"zustand": "^5.0.14"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@tauri-apps/cli": "^2.11.4",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"@vitest/coverage-v8": "^4.1.10",
"jsdom": "^30.0.1",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vitest": "^4.1.2"
}
}