2022-03-18 22:35:45 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/lit",
|
2023-05-18 16:31:59 +00:00
|
|
|
"version": "2.0.2",
|
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",
|
2023-02-01 13:18:37 +00:00
|
|
|
"./dist/client.js": "./dist/client.js",
|
2022-03-18 22:35:45 +00:00
|
|
|
"./hydration-support.js": "./hydration-support.js",
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-05-17 08:54:00 +00:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"client-shim.js",
|
|
|
|
"client-shim.min.js",
|
|
|
|
"hydration-support.js",
|
|
|
|
"server.js",
|
|
|
|
"server-shim.js"
|
|
|
|
],
|
2022-03-18 22:35:45 +00:00
|
|
|
"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": {
|
2023-06-12 19:52:13 +00:00
|
|
|
"@lit-labs/ssr": "^3.1.3",
|
|
|
|
"@lit-labs/ssr-client": "^1.1.2",
|
|
|
|
"@lit-labs/ssr-dom-shim": "^1.1.1",
|
2023-01-07 13:29:16 +00:00
|
|
|
"parse5": "^7.1.2"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"astro": "workspace:*",
|
2022-05-16 16:16:30 +00:00
|
|
|
"astro-scripts": "workspace:*",
|
2022-09-28 15:13:33 +00:00
|
|
|
"chai": "^4.3.6",
|
2022-06-02 19:45:11 +00:00
|
|
|
"cheerio": "^1.0.0-rc.11",
|
2023-06-12 19:52:13 +00:00
|
|
|
"lit": "^2.7.5",
|
2022-09-28 15:13:33 +00:00
|
|
|
"mocha": "^9.2.2",
|
2022-06-03 17:00:47 +00:00
|
|
|
"sass": "^1.52.2"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-03-29 16:43:40 +00:00
|
|
|
"@webcomponents/template-shadowroot": "^0.2.1",
|
|
|
|
"lit": "^2.7.0"
|
2022-03-18 22:35:45 +00:00
|
|
|
}
|
|
|
|
}
|