-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.24 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
{
"name": "conlog",
"private": true,
"version": "1.0.1",
"description": "A macOS Console log viewer with an easy UI — links each log entry's PID to its live process, charts the noise, and explains common errors.",
"license": "MIT",
"author": "hash00",
"homepage": "https://github.com/hash00/ConLog",
"repository": {
"type": "git",
"url": "git+https://github.com/hash00/ConLog.git"
},
"bugs": {
"url": "https://github.com/hash00/ConLog/issues"
},
"engines": {
"node": ">=22.12.0"
},
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@fontsource/inter": "^5.3.0",
"@fontsource/jetbrains-mono": "^5.3.0",
"@tanstack/react-virtual": "^3.14.10",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"lucide-react": "^0.395.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.12.7",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.3",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^42.5.0",
"electron-builder": "^26.15.3",
"eslint": "^10.9.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.6",
"globals": "^17.12.0",
"jsdom": "^29.1.1",
"postcss": "^8.5.26",
"tailwindcss": "^4.3.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.69.0",
"vite": "^6.4.3",
"vite-plugin-electron": "^1.1.2",
"vite-plugin-electron-renderer": "^1.0.0",
"vitest": "^4.1.11"
},
"build": {
"appId": "com.conlog.app",
"productName": "ConLog",
"afterPack": "build/afterPack.cjs",
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"directories": {
"output": "release"
}
}
}