2022-03-18 22:35:45 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/lit",
|
2022-08-09 16:10:25 +00:00
|
|
|
"version": "1.0.0",
|
2022-03-18 22:35:45 +00:00
|
|
|
"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"
|
|
|
|
},
|
2022-03-21 19:31:15 +00:00
|
|
|
"keywords": [
|
2022-07-08 20:55:33 +00:00
|
|
|
"astro-integration",
|
2022-03-21 19:31:15 +00:00
|
|
|
"astro-component",
|
|
|
|
"renderer",
|
|
|
|
"lit"
|
|
|
|
],
|
2022-03-18 22:35:45 +00:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 19:10:34 +00:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/lit/",
|
2022-03-18 22:35:45 +00:00
|
|
|
"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",
|
2022-03-24 00:46:16 +00:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2022-05-16 16:16:30 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
|
|
"test": "mocha"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-05-31 16:46:13 +00:00
|
|
|
"@lit-labs/ssr": "^2.2.0"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"astro": "workspace:*",
|
2022-05-16 16:16:30 +00:00
|
|
|
"astro-scripts": "workspace:*",
|
2022-06-02 19:45:11 +00:00
|
|
|
"cheerio": "^1.0.0-rc.11",
|
2022-06-03 17:00:47 +00:00
|
|
|
"sass": "^1.52.2"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"@webcomponents/template-shadowroot": "^0.1.0",
|
|
|
|
"lit": "^2.1.3"
|
|
|
|
}
|
|
|
|
}
|