package.json 901 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@hoppscotch/data",
  3. "version": "0.2.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. "@types/lodash": "^4.14.178",
  31. "tsup": "^5.11.11"
  32. },
  33. "dependencies": {
  34. "lodash": "^4.17.21"
  35. }
  36. }