-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.85 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.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
{
"name": "gitlab-viz",
"description": "Turn your GitLab issues into actionable insights with an interactive graph visualization.",
"keywords": [
"gitlab",
"issues",
"visualization",
"graph",
"vue",
"vite",
"electron",
"spa"
],
"author": "Thomas Fischer <tfischer@beamng.gmbh>",
"private": true,
"version": "0.3.23",
"license": "MIT",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeamNG/GitLabViz.git"
},
"bugs": {
"url": "https://github.com/BeamNG/GitLabViz/issues"
},
"homepage": "https://github.com/BeamNG/GitLabViz#readme",
"type": "module",
"main": "electron/main.cjs",
"build": {
"directories": {
"buildResources": "build"
},
"win": {
"icon": "build/icon.ico"
}
},
"scripts": {
"dev": "vite",
"dev:spa": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest --run --coverage",
"electron:dev": "concurrently -k \"cross-env BROWSER=none npm run dev\" \"wait-on http://localhost:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"electron:build": "vite build && electron-builder"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"axios": "^1.13.2",
"chart.js": "^4.5.0",
"d3": "^7.9.0",
"localforage": "^1.10.0",
"markdown-it": "^14.1.0",
"vite-plugin-vuetify": "^2.1.2",
"vuetify": "^3.11.3"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.0",
"@vue/test-utils": "^2.4.6",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.6",
"electron-builder": "^26.0.12",
"jsdom": "^27.3.0",
"vite": "^6.0.0",
"vite-plugin-singlefile": "^2.3.0",
"@vitest/coverage-v8": "^4.0.15",
"vitest": "^4.0.15",
"wait-on": "^9.0.3"
}
}