package.json 816 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@hoppscotch/data",
  3. "version": "0.1.0",
  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. },
  14. "exports": {
  15. ".": "./dist/index.js",
  16. "./graphql": "./dist/graphql/index.js",
  17. "./rest": "./dist/rest/index.js"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/hoppscotch/hoppscotch.git"
  22. },
  23. "author": "The Hoppscotch Team <support@hoppscotch.io>",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/hoppscotch/hoppscotch/issues"
  27. },
  28. "homepage": "https://github.com/hoppscotch/hoppscotch#readme",
  29. "devDependencies": {
  30. "tsup": "^5.10.1"
  31. }
  32. }