40efae6550
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "@astrojs/preact",
|
|
"description": "Use Preact components within Astro",
|
|
"version": "3.0.0-beta.1",
|
|
"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"
|
|
},
|
|
"keywords": [
|
|
"astro-integration",
|
|
"astro-component",
|
|
"renderer",
|
|
"preact"
|
|
],
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/preact/",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./client.js": "./dist/client.js",
|
|
"./client-dev.js": "./dist/client-dev.js",
|
|
"./server.js": "./dist/server.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
},
|
|
"dependencies": {
|
|
"@babel/plugin-transform-react-jsx": "^7.22.5",
|
|
"@babel/plugin-transform-react-jsx-development": "^7.22.5",
|
|
"babel-plugin-transform-hook-names": "^1.0.2",
|
|
"@preact/preset-vite": "^2.5.0",
|
|
"@preact/signals": "^1.1.3",
|
|
"preact-render-to-string": "^5.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*",
|
|
"preact": "^10.15.1"
|
|
},
|
|
"peerDependencies": {
|
|
"preact": "^10.6.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.14.1"
|
|
}
|
|
}
|