The unstable flag was causing arrow keys to display ANSI escape sequences as literal text instead of performing cursor navigation. For example the arrow keys in URL input fields display escape sequences (`^[[C, ^[[D, ^[[A, ^[[B`) as literal text. Closes HFE-880 Closes #5102 The unstable feature flag was originally added to support experimental features that were required for functionality that is no longer needed in the current implementation. See: - [Tauri Issue #9257] - Keyboard shortcuts broken with unstable flag - [Tauri Issue #10194] - Arrow keys printing invalid characters - [Wry Issue #1177] - Related macOS input handling issues
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "@hoppscotch/kernel",
|
|
"version": "0.2.0",
|
|
"description": "Cross-platform runtime kernel for Hoppscotch platform-ops",
|
|
"type": "module",
|
|
"main": "dist/hoppscotch-kernel.cjs",
|
|
"module": "dist/hoppscotch-kernel.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite build --watch",
|
|
"build:code": "vite build",
|
|
"build:decl": "tsc --project tsconfig.decl.json",
|
|
"build": "pnpm run build:code && pnpm run build:decl",
|
|
"prepare": "pnpm run build:code && pnpm run build:decl",
|
|
"do-typecheck": "pnpm exec tsc --noEmit"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"type": "./dist/index.d.ts",
|
|
"import": "./dist/hoppscotch-kernel.js",
|
|
"require": "./dist/hoppscotch-kernel.cjs"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hoppscotch/hoppscotch.git"
|
|
},
|
|
"author": "Hoppscotch (support@hoppscotch.io)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/hoppscotch/hoppscotch/issues"
|
|
},
|
|
"homepage": "https://github.com/hoppscotch/hoppscotch#readme",
|
|
"devDependencies": {
|
|
"@types/node": "22.9.3",
|
|
"typescript": "5.7.2",
|
|
"vite": "5.4.11"
|
|
},
|
|
"peerDependencies": {
|
|
"@tauri-apps/api": "2.1.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@tauri-apps/api": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"axios": "1.8.2",
|
|
"fp-ts": "2.16.9",
|
|
"aws4fetch": "1.0.20",
|
|
"zod": "3.22.4",
|
|
"superjson": "2.2.2",
|
|
"@tauri-apps/plugin-shell": "2.0.1",
|
|
"@tauri-apps/plugin-dialog": "2.0.1",
|
|
"@tauri-apps/plugin-fs": "2.0.2",
|
|
"@tauri-apps/plugin-store": "2.2.0",
|
|
"@hoppscotch/plugin-relay": "github:CuriousCorrelation/tauri-plugin-relay#3273b9b"
|
|
}
|
|
}
|