0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/integrations/alpinejs/package.json
Florian Lefebvre 1153331cbb
feat(alpinejs): allow customizing the Alpine instance (#9751)
* feat(alpinejs): allows customzing the Alpine instance

* chore: add e2e tests

* fix: rename script

* Update index.ts

* fix: lockfile
2024-01-24 14:43:03 +00:00

49 lines
No EOL
1.2 KiB
JSON

{
"name": "@astrojs/alpinejs",
"description": "Use Alpine within Astro",
"version": "0.3.2",
"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.40.0",
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"vite": "^5.0.10"
},
"publishConfig": {
"provenance": true
}
}