update at 2026-03-03 21:19:52

This commit is contained in:
douboer@gmail.com
2026-03-03 21:19:52 +08:00
parent 3dc4144007
commit e4987a2d77
139 changed files with 21522 additions and 43 deletions

34
pxterm/package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "@remoteconn/web",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && node ../../scripts/check-web-bundle-size.mjs",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint src --ext .ts,.vue",
"test": "vitest run"
},
"dependencies": {
"@remoteconn/plugin-runtime": "file:./packages/plugin-runtime",
"@remoteconn/shared": "file:./packages/shared",
"dexie": "^4.2.0",
"pinia": "^3.0.3",
"vue": "^3.5.21",
"vue-router": "^4.5.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-search": "^0.13.0",
"xterm-addon-unicode11": "^0.6.0",
"xterm-addon-webgl": "^0.16.0"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@vitejs/plugin-vue": "^6.0.4",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vue-tsc": "^3.2.5"
}
}