0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/packages/integrations/alpinejs/package.json
renovate[bot] 2594eb088d
fix(deps): update all non-major dependencies (#12003)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: bluwy <bjornlu.dev@gmail.com>
2024-09-26 14:57:59 +01:00

49 lines
1.2 KiB
JSON

{
"name": "@astrojs/alpinejs",
"description": "Use Alpine within Astro",
"version": "0.4.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/integrations/alpinejs"
},
"keywords": [
"astro-integration",
"astro-component",
"renderer",
"alpinejs",
"performance"
],
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://docs.astro.build/en/guides/integrations-guide/alpinejs",
"exports": {
".": "./dist/index.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\"",
"test:e2e": "playwright test"
},
"peerDependencies": {
"@types/alpinejs": "^3.0.0",
"alpinejs": "^3.0.0"
},
"devDependencies": {
"@playwright/test": "1.47.2",
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"vite": "^5.4.8"
},
"publishConfig": {
"provenance": true
}
}