package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. "build:code": "vite build",
  14. "build:decl": "tsc --project tsconfig.decl.json",
  15. "build": "pnpm run build:code && pnpm run build:decl",
  16. "prepare": "pnpm run build:code && pnpm run build:decl",
  17. "do-typecheck": "pnpm exec tsc --noEmit"
  18. },
  19. "exports": {
  20. ".": {
  21. "import": "./dist/hoppscotch-data.js",
  22. "require": "./dist/hoppscotch-data.cjs",
  23. "type": "./dist/index.d.ts"
  24. }
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/hoppscotch/hoppscotch.git"
  29. },
  30. "author": "Hoppscotch (support@hoppscotch.io)",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/hoppscotch/hoppscotch/issues"
  34. },
  35. "homepage": "https://github.com/hoppscotch/hoppscotch#readme",
  36. "devDependencies": {
  37. "@types/lodash": "^4.14.200",
  38. "typescript": "^5.2.2",
  39. "vite": "^4.5.0"
  40. },
  41. "dependencies": {
  42. "fp-ts": "^2.16.1",
  43. "io-ts": "^2.2.20",
  44. "lodash": "^4.17.21",
  45. "parser-ts": "^0.7.0",
  46. "verzod": "^0.2.2",
  47. "zod": "^3.22.4"
  48. }
  49. }