summaryrefslogtreecommitdiff
path: root/packages/integrations/lit/package.json
blob: 2e76308f1bc7f1c918d51508a3441f040713ffb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  "name": "@astrojs/lit",
  "version": "0.0.1",
  "description": "Use Lit components within Astro",
  "type": "module",
  "types": "./dist/index.d.ts",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/withastro/astro.git",
    "directory": "packages/integrations/lit"
  },
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://astro.build",
  "exports": {
    ".": "./dist/index.js",
    "./server.js": "./server.js",
    "./client-shim.js": "./client-shim.js",
    "./hydration-support.js": "./hydration-support.js",
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "astro-scripts build \"src/**/*.ts\" && tsc",
    "dev": "astro-scripts dev \"src/**/*.ts\""
  },
  "dependencies": {
    "@lit-labs/ssr": "^2.0.2"
  },
  "devDependencies": {
    "astro": "workspace:*",
    "astro-scripts": "workspace:*"
  },
  "peerDependencies": {
    "@webcomponents/template-shadowroot": "^0.1.0",
    "lit": "^2.1.3"
  }
}