package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@hoppscotch/data",
  3. "version": "0.4.2",
  4. "description": "Data Types, Validations and Migrations for Hoppscotch Public Data Structures",
  5. "main": "dist/index.js",
  6. "module": "true",
  7. "files": [
  8. "dist"
  9. ],
  10. "scripts": {
  11. "build": "tsup src --dts",
  12. "prepare": "tsup src --dts",
  13. "do-typecheck": "pnpm exec tsc --noEmit"
  14. },
  15. "exports": {
  16. ".": "./dist/index.js",
  17. "./graphql": "./dist/graphql/index.js",
  18. "./rest": "./dist/rest/index.js",
  19. "./rawKeyValue": "./dist/rawKeyValue.js",
  20. "./collection": "./dist/index.js",
  21. "./environment": "./dist/environment.js"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/hoppscotch/hoppscotch.git"
  26. },
  27. "author": "Hoppscotch (support@hoppscotch.io)",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/hoppscotch/hoppscotch/issues"
  31. },
  32. "homepage": "https://github.com/hoppscotch/hoppscotch#readme",
  33. "devDependencies": {
  34. "@types/lodash": "^4.14.181",
  35. "tsup": "^5.12.5",
  36. "typescript": "^4.6.3"
  37. },
  38. "dependencies": {
  39. "fp-ts": "^2.11.10",
  40. "io-ts": "^2.2.16",
  41. "lodash": "^4.17.21",
  42. "parser-ts": "^0.6.16"
  43. }
  44. }