-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.36 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.36 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "sleuth",
"productName": "Sleuth",
"version": "4.0.0",
"description": "Slack Log Viewer",
"main": ".vite/build/index.js",
"type": "commonjs",
"engines": {
"node": ">=22"
},
"scripts": {
"tsc": "tsc -p tsconfig.json --noEmit",
"lint": "oxlint && oxfmt --check",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"start": "electron-forge start",
"test": "vitest",
"catapult:update": "git submodule foreach git pull origin master",
"lint:fix": "oxlint --fix && oxfmt",
"prepare": "husky"
},
"keywords": [],
"author": "Felix Rieseberg <felix@felixrieseberg.com>",
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^6.0.0",
"@date-fns/tz": "^1.4.1",
"@fontsource/fira-code": "^5.2.7",
"antd": "^6.0.0",
"chart.js": "3.5.0",
"chartjs-adapter-date-fns": "^2.0.0",
"chartjs-plugin-zoom": "^1.1.1",
"classnames": "2.2.6",
"date-fns": "4.1.0",
"debug": "4.3.1",
"electron-devtools-installer": "4.0.0",
"electron-squirrel-startup": "1.0.0",
"electron-window-state": "5.0.3",
"fs-extra": "9.0.1",
"jsonic": "1.0.1",
"lodash": "^4.18.1",
"lz-string": "^1.4.4",
"mobx": "^6.15.0",
"mobx-react": "^7.6.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-json-tree": "0.18.0",
"react-virtualized": "patch:react-virtualized@npm%3A9.22.5#~/.yarn/patches/react-virtualized-npm-9.22.5-be95b8e1a8.patch",
"tmp": "0.2.4",
"tslib": "^2.8.1",
"update-electron-app": "^2.0.1",
"vitest": "^4.1.2",
"yauzl": "2.10.0"
},
"devDependencies": {
"@electron-forge/cli": "8.0.0-alpha.6",
"@electron-forge/maker-deb": "8.0.0-alpha.6",
"@electron-forge/maker-rpm": "8.0.0-alpha.6",
"@electron-forge/maker-squirrel": "8.0.0-alpha.6",
"@electron-forge/maker-zip": "8.0.0-alpha.6",
"@electron-forge/plugin-auto-unpack-natives": "8.0.0-alpha.6",
"@electron-forge/plugin-vite": "patch:@electron-forge/plugin-vite@npm%3A8.0.0-alpha.6#~/.yarn/patches/@electron-forge-plugin-vite-npm-8.0.0-alpha.6-eae1e3d3c3.patch",
"@electron-forge/publisher-github": "8.0.0-alpha.6",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.0",
"@types/classnames": "^2.2.11",
"@types/debug": "4.1.5",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/fs-extra": "^9.0.4",
"@types/lz-string": "^1.3.34",
"@types/node": "^22.14.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-virtualized": "^9.21.10",
"@types/semver": "^7.3.4",
"@types/tmp": "0.2.0",
"@types/yauzl": "^2.10.0",
"@vitejs/plugin-react": "^6.0.1",
"electron": "41.0.2",
"husky": "^9.0.0",
"jsdom": "^26.1.0",
"lint-staged": "^16.3.2",
"node-abi": "^3.45.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^8.0.0"
},
"resolutions": {
"@types/react-virtualized/@types/react": "^18.0.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"oxlint --fix",
"oxfmt"
],
"*.{yml,yaml,css}": [
"oxfmt"
]
},
"packageManager": "yarn@4.12.0",
"dependenciesMeta": {
"electron": {
"built": true
},
"electron-winstaller": {
"built": true
}
}
}