package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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": [ "dist/*" ],
  10. "scripts": {
  11. "build:code": "vite build",
  12. "build:decl": "tsc --project tsconfig.decl.json",
  13. "build": "pnpm run build:code && pnpm run build:decl",
  14. "prepare": "pnpm run build:code && pnpm run build:decl",
  15. "do-typecheck": "pnpm exec tsc --noEmit"
  16. },
  17. "exports": {
  18. ".": {
  19. "import": "./dist/hoppscotch-data.js",
  20. "require": "./dist/hoppscotch-data.cjs",
  21. "type": "./dist/index.d.ts"
  22. }
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/hoppscotch/hoppscotch.git"
  27. },
  28. "author": "Hoppscotch (support@hoppscotch.io)",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/hoppscotch/hoppscotch/issues"
  32. },
  33. "homepage": "https://github.com/hoppscotch/hoppscotch#readme",
  34. "devDependencies": {
  35. "@types/lodash": "^4.14.181",
  36. "typescript": "^4.6.3",
  37. "vite": "^3.2.3"
  38. },
  39. "dependencies": {
  40. "fp-ts": "^2.11.10",
  41. "io-ts": "^2.2.16",
  42. "lodash": "^4.17.21",
  43. "parser-ts": "^0.6.16"
  44. }
  45. }