mirror of
https://github.com/EKKOLearnAI/hermes-web-ui.git
synced 2026-05-26 05:50:18 +00:00
7ea54efb01
Use native http module to serve built static files and proxy API requests. No Vite dependency at runtime — only needed for building. This fixes SFC compilation errors on global install. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
780 B
JSON
37 lines
780 B
JSON
{
|
|
"name": "hermes-web-ui",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"bin": {
|
|
"hermes-web-ui": "./bin/hermes-web-ui.mjs"
|
|
},
|
|
"scripts": {
|
|
"start": "vite --host --port 8648",
|
|
"dev": "vite --host",
|
|
"build": "vue-tsc -b && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"dist/"
|
|
],
|
|
"dependencies": {
|
|
"highlight.js": "^11.11.1",
|
|
"markdown-it": "^14.1.1",
|
|
"naive-ui": "^2.44.1",
|
|
"pinia": "^3.0.4",
|
|
"vue": "^3.5.32",
|
|
"vue-router": "^4.6.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/markdown-it": "^14.1.2",
|
|
"@types/node": "^24.12.2",
|
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
"@vue/tsconfig": "^0.9.1",
|
|
"sass": "^1.99.0",
|
|
"typescript": "~6.0.2",
|
|
"vite": "^8.0.4",
|
|
"vue-tsc": "^3.2.6"
|
|
}
|
|
}
|