-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.71 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.71 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
{
"name": "logviewer.client",
"productName": "Compact Log Viewer",
"version": "1.4.0",
"description": "A cross platform Electron app to view and search logs stored in the Compact log format",
"homepage": "https://github.com/warrenbuckley/Compact-Log-Format-Viewer#readme",
"repository": {
"type": "git",
"url": "https://github.com/warrenbuckley/Compact-Log-Format-Viewer.git"
},
"main": "dist/main/main.js",
"scripts": {
"start": "electron .",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src",
"tsc": "tsc --diagnostics",
"watch": "tsc --watch",
"win": "electron-builder --win --config ./electron-builder.json",
"mac": "electron-builder --mac --config electron-builder.json",
"publish": "electron-builder --config electron-builder.json --publish always"
},
"author": "Warren Buckley",
"license": "ISC",
"private": true,
"devDependencies": {
"@types/angular": "^1.8.9",
"@types/chart.js": "^2.9.35",
"@types/electron-is-dev": "^1.1.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"electron": "^30.0.2",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"typescript": "^5.4.5",
"typescript-tslint-plugin": "^1.0.2"
},
"dependencies": {
"@microsoft/signalr": "^8.0.0",
"angular": "^1.8.3",
"angular-chart.js": "^1.1.1",
"axios": "^1.6.8",
"bootstrap": "^5.3.3",
"chart.js": "2.9.4",
"electron-log": "^5.1.7",
"electron-updater": "^6.1.8",
"jquery": "^3.7.1",
"popper.js": "^1.16.1"
}
}