-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 901 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 901 Bytes
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
{
"name": "@git-stunts/warp-inspector",
"version": "0.1.0",
"private": false,
"type": "module",
"license": "Apache-2.0",
"description": "Interactive browser-based graph viewer for git-warp",
"repository": {
"type": "git",
"url": "https://github.com/git-stunts/git-warp-web-inspector.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run"
},
"dependencies": {
"elkjs": "^0.11.0",
"pinia": "^3.0.2",
"vue": "^3.5.13"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@vitejs/plugin-vue": "^5.2.4",
"eslint": "^9.21.0",
"eslint-plugin-vue": "^9.32.0",
"prettier": "^3.5.3",
"vite": "^6.3.5",
"vitest": "^3.0.9"
},
"engines": {
"node": ">=22.0.0"
}
}