package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@hoppscotch/data",
  3. "version": "0.4.4",
  4. "description": "Data Types, Validations and Migrations for Hoppscotch Public Data Structures",
  5. "type": "module",
  6. "main": "dist/hoppscotch-data.cjs",
  7. "module": "dist/hoppscotch-data.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. "import": "./dist/hoppscotch-data.js",
  23. "require": "./dist/hoppscotch-data.cjs",
  24. "type": "./dist/index.d.ts"
  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/lodash": "4.14.200",
  39. "typescript": "5.2.2",
  40. "vite": "4.5.0"
  41. },
  42. "dependencies": {
  43. "fp-ts": "2.16.1",
  44. "io-ts": "2.2.20",
  45. "lodash": "4.17.21",
  46. "parser-ts": "0.7.0",
  47. "verzod": "0.2.2",
  48. "zod": "3.22.4"
  49. }
  50. }