api-client/packages/hoppscotch-kernel/package.json
Shreyas 6beca5c787
fix(native): bump tauri-plugin-shell to v2.2.1 (#5402)
Updates `tauri-plugin-shell` from vulnerable version to `v2.2.1` to
 address `CVE-2025-31477` in `open` around scope validation.

 Affects both `hoppscotch-agent` and `hoppscotch-desktop`.

 Closes FE-1022
2025-09-24 21:48:06 +05:30

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": {
".": {
"types": "./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": "24.3.0",
"typescript": "5.9.2",
"vite": "6.3.5"
},
"peerDependencies": {
"@tauri-apps/api": "2.1.1"
},
"peerDependenciesMeta": {
"@tauri-apps/api": {
"optional": true
}
},
"dependencies": {
"axios": "1.12.2",
"fp-ts": "2.16.11",
"aws4fetch": "1.0.20",
"zod": "3.25.32",
"superjson": "2.2.2",
"@tauri-apps/plugin-shell": "2.2.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#5d59b97fe331ca62e8be0454ff3f4e5f6185ae70"
}
}