package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@astrojs/partytown",
  3. "description": "Use Partytown to move scripts into a web worker in your Astro project",
  4. "version": "2.0.4",
  5. "type": "module",
  6. "types": "./dist/index.d.ts",
  7. "author": "withastro",
  8. "license": "MIT",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/withastro/astro.git",
  12. "directory": "packages/integrations/partytown"
  13. },
  14. "keywords": [
  15. "astro-integration",
  16. "astro-component",
  17. "analytics",
  18. "performance"
  19. ],
  20. "bugs": "https://github.com/withastro/astro/issues",
  21. "homepage": "https://docs.astro.build/en/guides/integrations-guide/partytown/",
  22. "exports": {
  23. ".": "./dist/index.js",
  24. "./package.json": "./package.json"
  25. },
  26. "files": [
  27. "dist"
  28. ],
  29. "scripts": {
  30. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  31. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  32. "dev": "astro-scripts dev \"src/**/*.ts\""
  33. },
  34. "dependencies": {
  35. "@builder.io/partytown": "^0.8.0",
  36. "mrmime": "^1.0.1"
  37. },
  38. "devDependencies": {
  39. "astro": "workspace:*",
  40. "astro-scripts": "workspace:*"
  41. },
  42. "publishConfig": {
  43. "provenance": true
  44. }
  45. }