Files
wehub-resource-sync 2a49a75286
Node.js CI / Test (22) (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 11:59:37 +08:00

73 lines
2.1 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",
"lint": "eslint src",
"lintfix": "eslint --fix src",
"do-lint": "pnpm run lint",
"do-lintfix": "pnpm run lintfix"
},
"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": {
"@eslint/js": "9.39.2",
"@types/node": "24.9.1",
"@typescript-eslint/eslint-plugin": "8.61.1",
"@typescript-eslint/parser": "8.61.1",
"eslint": "9.39.2",
"eslint-plugin-prettier": "5.5.6",
"globals": "16.5.0",
"typescript": "5.9.3",
"vite": "7.3.2"
},
"peerDependencies": {
"@tauri-apps/api": "2.1.1"
},
"peerDependenciesMeta": {
"@tauri-apps/api": {
"optional": true
}
},
"dependencies": {
"@hoppscotch/plugin-relay": "github:CuriousCorrelation/tauri-plugin-relay#273488c8f50a22ee707af6b50ccd5570851f8bc9",
"@tauri-apps/plugin-dialog": "2.0.1",
"@tauri-apps/plugin-fs": "2.0.2",
"@tauri-apps/plugin-shell": "2.3.3",
"@tauri-apps/plugin-store": "2.4.1",
"aws4fetch": "1.0.20",
"axios": "1.18.0",
"fp-ts": "2.16.11",
"superjson": "2.2.6",
"zod": "3.25.32"
}
}