package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@astrojs/vue",
  3. "version": "4.0.8",
  4. "description": "Use Vue components within Astro",
  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/vue"
  13. },
  14. "keywords": [
  15. "astro-integration",
  16. "astro-component",
  17. "renderer",
  18. "vue"
  19. ],
  20. "bugs": "https://github.com/withastro/astro/issues",
  21. "homepage": "https://docs.astro.build/en/guides/integrations-guide/vue/",
  22. "exports": {
  23. ".": "./dist/index.js",
  24. "./editor": "./dist/editor.cjs",
  25. "./*": "./*",
  26. "./client.js": "./client.js",
  27. "./server.js": "./server.js",
  28. "./package.json": "./package.json"
  29. },
  30. "files": [
  31. "dist",
  32. "client.js",
  33. "server.js",
  34. "static-html.js"
  35. ],
  36. "scripts": {
  37. "build": "astro-scripts build \"src/index.ts\" && astro-scripts build \"src/editor.cts\" --force-cjs --no-clean-dist && tsc",
  38. "build:ci": "astro-scripts build \"src/**/*.ts\" && astro-scripts build \"src/editor.cts\" --force-cjs --no-clean-dist",
  39. "dev": "astro-scripts dev \"src/**/*.ts\"",
  40. "test": "astro-scripts test \"test/**/*.test.js\""
  41. },
  42. "dependencies": {
  43. "@vitejs/plugin-vue": "^4.5.0",
  44. "@vitejs/plugin-vue-jsx": "^3.1.0",
  45. "@vue/babel-plugin-jsx": "^1.1.5",
  46. "@vue/compiler-sfc": "^3.3.8"
  47. },
  48. "devDependencies": {
  49. "@types/chai": "^4.3.10",
  50. "astro": "workspace:*",
  51. "astro-scripts": "workspace:*",
  52. "cheerio": "1.0.0-rc.12",
  53. "linkedom": "^0.16.4",
  54. "vite": "^5.1.2",
  55. "vue": "^3.3.8"
  56. },
  57. "peerDependencies": {
  58. "astro": "^4.0.0",
  59. "vue": "^3.2.30"
  60. },
  61. "engines": {
  62. "node": ">=18.14.1"
  63. },
  64. "publishConfig": {
  65. "provenance": true
  66. }
  67. }