package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@hoppscotch/kernel",
  3. "version": "0.1.0",
  4. "description": "Cross-platform runtime kernel for Hoppscotch platform-ops",
  5. "type": "module",
  6. "main": "dist/hoppscotch-kernel.cjs",
  7. "module": "dist/hoppscotch-kernel.js",
  8. "types": "./dist/index.d.ts",
  9. "files": [
  10. "dist/*"
  11. ],
  12. "scripts": {
  13. "dev": "vite build --watch",
  14. "build:code": "vite build",
  15. "build:decl": "tsc --project tsconfig.decl.json",
  16. "build": "pnpm run build:code && pnpm run build:decl",
  17. "prepare": "pnpm run build:code && pnpm run build:decl",
  18. "do-typecheck": "pnpm exec tsc --noEmit"
  19. },
  20. "exports": {
  21. ".": {
  22. "type": "./dist/index.d.ts",
  23. "import": "./dist/hoppscotch-kernel.js",
  24. "require": "./dist/hoppscotch-kernel.cjs"
  25. }
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "git+https://github.com/hoppscotch/hoppscotch.git"
  30. },
  31. "author": "Hoppscotch (support@hoppscotch.io)",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/hoppscotch/hoppscotch/issues"
  35. },
  36. "homepage": "https://github.com/hoppscotch/hoppscotch#readme",
  37. "devDependencies": {
  38. "@types/node": "22.9.3",
  39. "typescript": "5.7.2",
  40. "vite": "5.4.11"
  41. },
  42. "peerDependencies": {
  43. "@tauri-apps/api": "2.1.1"
  44. },
  45. "peerDependenciesMeta": {
  46. "@tauri-apps/api": {
  47. "optional": true
  48. }
  49. },
  50. "dependencies": {
  51. "axios": "1.6.2",
  52. "fp-ts": "2.16.9",
  53. "aws4fetch": "1.0.20",
  54. "zod": "3.22.4",
  55. "superjson": "2.2.2",
  56. "@tauri-apps/plugin-shell": "2.0.1",
  57. "@tauri-apps/plugin-dialog": "2.0.1",
  58. "@tauri-apps/plugin-fs": "2.0.2",
  59. "@tauri-apps/plugin-store": "2.2.0",
  60. "@hoppscotch/plugin-relay": "github:CuriousCorrelation/tauri-plugin-hoppscotch-relay"
  61. }
  62. }