package.json 1017 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@astrojs/internal-helpers",
  3. "description": "Internal helpers used by core Astro packages.",
  4. "version": "0.2.1",
  5. "type": "module",
  6. "author": "withastro",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/withastro/astro.git",
  11. "directory": "packages/internal-helpers"
  12. },
  13. "bugs": "https://github.com/withastro/astro/issues",
  14. "exports": {
  15. "./path": "./dist/path.js"
  16. },
  17. "typesVersions": {
  18. "*": {
  19. "path": [
  20. "./dist/path.d.ts"
  21. ]
  22. }
  23. },
  24. "files": [
  25. "dist"
  26. ],
  27. "scripts": {
  28. "prepublish": "pnpm build",
  29. "build": "astro-scripts build \"src/**/*.ts\" && tsc -p tsconfig.json",
  30. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  31. "postbuild": "astro-scripts copy \"src/**/*.js\"",
  32. "dev": "astro-scripts dev \"src/**/*.ts\""
  33. },
  34. "devDependencies": {
  35. "astro-scripts": "workspace:*"
  36. },
  37. "keywords": [
  38. "astro",
  39. "astro-component"
  40. ],
  41. "publishConfig": {
  42. "provenance": true
  43. }
  44. }