-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.16 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.16 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
114
115
116
117
118
119
{
"name": "kitops-desktop",
"version": "0.0.4",
"description": "Desktop UI for KitOps - Visual ModelKit Manager",
"author": {
"name": "Jozu",
"email": "[email protected]"
},
"main": "electron/main.js",
"bin": {
"kitflow": "bin/kitflow.js"
},
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=23",
"pnpm": ">=10"
},
"scripts": {
"postinstall": "node scripts/generate-kitops-schema.mjs",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && VITE_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"bundle:kitflow": "node scripts/bundle-kitflow.mjs",
"electron:build": "vite build && node scripts/bundle-kitflow.mjs && electron-builder",
"lint": "eslint src/ electron/ bin/ scripts/",
"lint:fix": "eslint --fix src/ electron/ bin/ scripts/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@iconify-json/ri": "^1.2.7",
"@tailwindcss/vite": "^4.1.18",
"@vueuse/core": "^14.2.1",
"diff": "^8.0.4",
"@kitops/kitops-ts": "^0.0.4",
"marked": "^17.0.1",
"pinia": "^3.0.4",
"shiki": "^4.0.2",
"tailwindcss": "^4.1.18",
"vue": "^3.5.31",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.8.0",
"@vitejs/plugin-vue": "^6.0.5",
"concurrently": "^9.2.1",
"electron": "^41.1.0",
"electron-builder": "^26.8.1",
"eslint": "^10.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript-eslint": "^8.57.2",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.3",
"wait-on": "^9.0.4",
"yaml": "^2.8.2",
"@vitest/coverage-v8": "^3.0.0",
"esbuild": "^0.27.0",
"@vue/test-utils": "^2.4.0",
"jsdom": "^29.0.1",
"vitest": "^3.0.0"
},
"lint-staged": {
"{src,electron,bin,scripts}/**/*.{js,ts,vue}": [
"eslint --fix"
]
},
"pnpm": {
"ignoredBuiltDependencies": ["esbuild", "vue-demi"],
"onlyBuiltDependencies": ["dprint", "electron"]
},
"build": {
"appId": "com.kitops.desktop",
"productName": "KitOps Desktop",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"extraResources": [
{ "from": "bin/kitflow.bundle.cjs", "to": "kitflow.cjs" }
],
"protocols": [
{
"name": "KitOps",
"schemes": ["kitops"]
}
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns",
"target": [
{ "target": "dmg", "arch": ["x64", "arm64"] },
{ "target": "zip", "arch": ["x64", "arm64"] }
]
},
"win": {
"icon": "build/icon.ico",
"target": ["nsis"]
},
"linux": {
"icon": "build/icon.png",
"target": ["AppImage", "deb"],
"category": "Development"
}
}
}