-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "tether",
"private": false,
"version": "0.1.0",
"description": "A lightweight, browser-based Kubernetes dashboard built with Vue 3.",
"license": "MIT",
"homepage": "https://github.com/troll-warlord/tether",
"repository": {
"type": "git",
"url": "https://github.com/troll-warlord/tether.git"
},
"type": "module",
"bin": {
"tether": "./bin/tether.js"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,vue,css}\"",
"format:check": "prettier --check \"src/**/*.{js,vue,css}\"",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@pinia/colada": "^1.0.0",
"@vue-flow/background": "^1.3.2",
"@vue-flow/controls": "^1.1.3",
"@vue-flow/core": "^1.48.2",
"@vue-flow/minimap": "^1.5.4",
"axios": "^1.13.6",
"chart.js": "^4.5.1",
"js-yaml": "^4.1.1",
"lucide-vue-next": "^0.577.0",
"pinia": "^3.0.4",
"vue": "^3.5.30",
"vue-chartjs": "^5.3.3",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/typography": "^0.5.19",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/eslint-config-prettier": "^10.2.0",
"autoprefixer": "^10.4.27",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.19",
"vite": "^8.0.0",
"vue-eslint-parser": "^10.4.0"
}
}