This updates `vue-tsc` to version `2.2.0` and removes caret prefix from TypeScript to resolve build compatibility issues that were preventing builds in `agent`'s CI/CD pipeline. The build process was failing with "Search string not found" errors when vue-tsc attempted to patch TypeScript's internal structure. Initially thought to be related to FE-925, FE-924. Closes FE-926 The previous config used `TypeScript` at `^5.8.3` with `vue-tsc` at `^2.1.6`. The `vue-tsc` package contains hardcoded regex patterns for patching TypeScript's internals, and these patterns in version 2.1.6 don't match the structure in TypeScript 5.8.3.
37 lines
923 B
JSON
37 lines
923 B
JSON
{
|
|
"name": "hoppscotch-agent",
|
|
"private": true,
|
|
"version": "0.1.11",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"@hoppscotch/ui": "^0.2.1",
|
|
"@tauri-apps/api": "^2.0.2",
|
|
"@tauri-apps/plugin-shell": "^2.0.0",
|
|
"@vueuse/core": "^11.1.0",
|
|
"axios": "1.8.2",
|
|
"fp-ts": "^2.16.9",
|
|
"lodash-es": "4.17.21",
|
|
"vue": "3.3.9"
|
|
},
|
|
"devDependencies": {
|
|
"@iconify-json/lucide": "^1.2.8",
|
|
"@tauri-apps/cli": "^2.0.3",
|
|
"@types/lodash-es": "4.17.12",
|
|
"@types/node": "^22.7.5",
|
|
"@vitejs/plugin-vue": "^5.1.4",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.4.47",
|
|
"tailwindcss": "^3.4.13",
|
|
"typescript": "5.8.3",
|
|
"unplugin-icons": "^0.19.3",
|
|
"unplugin-vue-components": "28.4.1",
|
|
"vite": "^5.4.8",
|
|
"vue-tsc": "2.2.0"
|
|
}
|
|
}
|