2022-03-18 22:35:45 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/preact",
|
|
|
|
"description": "Use Preact components within Astro",
|
2023-01-30 17:38:31 +00:00
|
|
|
"version": "2.0.1",
|
2022-03-18 22:35:45 +00:00
|
|
|
"type": "module",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/withastro/astro.git",
|
|
|
|
"directory": "packages/integrations/preact"
|
|
|
|
},
|
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",
|
|
|
|
"preact"
|
|
|
|
],
|
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/preact/",
|
2022-03-18 22:35:45 +00:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
2022-10-10 13:01:15 +00:00
|
|
|
"./client.js": "./dist/client.js",
|
|
|
|
"./client-dev.js": "./dist/client-dev.js",
|
|
|
|
"./server.js": "./dist/server.js",
|
2022-03-18 22:35:45 +00:00
|
|
|
"./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-03-18 22:35:45 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-07-14 18:39:58 +00:00
|
|
|
"@babel/core": ">=7.0.0-0 <8.0.0",
|
2022-05-17 15:44:50 +00:00
|
|
|
"@babel/plugin-transform-react-jsx": "^7.17.12",
|
2022-06-29 15:42:47 +00:00
|
|
|
"babel-plugin-module-resolver": "^4.1.0",
|
2022-10-10 13:01:15 +00:00
|
|
|
"preact-render-to-string": "^5.2.4",
|
|
|
|
"@preact/signals": "^1.1.0"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
2022-06-01 15:39:32 +00:00
|
|
|
"preact": "^10.7.3"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"preact": "^10.6.5"
|
|
|
|
},
|
|
|
|
"engines": {
|
2023-01-09 21:59:20 +00:00
|
|
|
"node": ">=16.12.0"
|
2022-03-18 22:35:45 +00:00
|
|
|
}
|
|
|
|
}
|