package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@astrojs/alpinejs",
  3. "description": "Use Alpine within Astro",
  4. "version": "0.4.0",
  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/alpinejs"
  13. },
  14. "keywords": [
  15. "astro-integration",
  16. "astro-component",
  17. "renderer",
  18. "alpinejs",
  19. "performance"
  20. ],
  21. "bugs": "https://github.com/withastro/astro/issues",
  22. "homepage": "https://docs.astro.build/en/guides/integrations-guide/alpinejs",
  23. "exports": {
  24. ".": "./dist/index.js",
  25. "./package.json": "./package.json"
  26. },
  27. "files": [
  28. "dist"
  29. ],
  30. "scripts": {
  31. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  32. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  33. "dev": "astro-scripts dev \"src/**/*.ts\"",
  34. "test:e2e": "playwright test"
  35. },
  36. "peerDependencies": {
  37. "@types/alpinejs": "^3.0.0",
  38. "alpinejs": "^3.0.0"
  39. },
  40. "devDependencies": {
  41. "@playwright/test": "1.40.0",
  42. "astro": "workspace:*",
  43. "astro-scripts": "workspace:*",
  44. "vite": "^5.1.2"
  45. },
  46. "publishConfig": {
  47. "provenance": true
  48. }
  49. }