astro/packages/integrations/svelte/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "@astrojs/svelte",
"version": "0.2.0",
"description": "Use Svelte 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/svelte"
},
"keywords": [
"astro-component",
"renderer",
"svelte"
],
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://astro.build",
"exports": {
".": "./dist/index.js",
"./*": "./*",
"./client.js": "./client.js",
"./server.js": "./server.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.48",
"postcss-load-config": "^3.1.4",
"svelte-preprocess": "^4.10.7",
"vite": "^2.9.10"
},
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"svelte": "^3.48.0"
},
"peerDependencies": {
"svelte": "^3.46.4"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
}