package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@astrojs/lit",
  3. "version": "4.0.1",
  4. "description": "Use Lit 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/lit"
  13. },
  14. "keywords": [
  15. "astro-integration",
  16. "astro-component",
  17. "renderer",
  18. "lit"
  19. ],
  20. "bugs": "https://github.com/withastro/astro/issues",
  21. "homepage": "https://docs.astro.build/en/guides/integrations-guide/lit/",
  22. "exports": {
  23. ".": "./dist/index.js",
  24. "./server.js": "./server.js",
  25. "./client-shim.js": "./client-shim.js",
  26. "./dist/client.js": "./dist/client.js",
  27. "./hydration-support.js": "./hydration-support.js",
  28. "./package.json": "./package.json"
  29. },
  30. "files": [
  31. "dist",
  32. "client-shim.js",
  33. "client-shim.min.js",
  34. "hydration-support.js",
  35. "server.js",
  36. "server-shim.js"
  37. ],
  38. "scripts": {
  39. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  40. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  41. "dev": "astro-scripts dev \"src/**/*.ts\"",
  42. "test": "astro-scripts test \"test/**/*.test.js\""
  43. },
  44. "dependencies": {
  45. "@lit-labs/ssr": "^3.2.0",
  46. "@lit-labs/ssr-client": "^1.1.5",
  47. "@lit-labs/ssr-dom-shim": "^1.1.2",
  48. "parse5": "^7.1.2"
  49. },
  50. "overrides": {
  51. "@lit-labs/ssr": {
  52. "@lit-labs/ssr-client": "1.1.3"
  53. }
  54. },
  55. "devDependencies": {
  56. "astro": "workspace:*",
  57. "astro-scripts": "workspace:*",
  58. "cheerio": "1.0.0-rc.12",
  59. "lit": "^3.1.0",
  60. "sass": "^1.69.5"
  61. },
  62. "peerDependencies": {
  63. "@webcomponents/template-shadowroot": "^0.2.1",
  64. "lit": "^3.1.0"
  65. },
  66. "publishConfig": {
  67. "provenance": true
  68. }
  69. }