astro-reactive-form/package.json
2023-09-25 16:59:58 +02:00

46 lines
1.3 KiB
JSON

{
"name": "astro-reactive",
"description": "Astro components for building reactive user interfaces 🚀",
"version": "0.0.0",
"repository": "https://github.com/astro-reactive/astro-reactive",
"homepage": "https://astro-reactive.dev",
"author": "astro-reactive",
"type": "module",
"exports": {
".": "./index.ts"
},
"scripts": {
"start": "turbo run dev --filter=demo",
"demo": "turbo run dev --filter=demo",
"docs": "turbo run dev --filter=docs",
"landing-page": "turbo run dev --filter=landing-page",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"build": "turbo run build",
"check": "turbo run check",
"clean": "turbo clean",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"publish": "turbo run lint build check test && npm publish --access public -w",
"release": "node ./packages/pr-updater.js"
},
"license": "ISC",
"workspaces": [
"packages/*",
"apps/*",
"configs/*"
],
"dependencies": {
"@changesets/cli": "^2.26.2",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^0.34.5",
"eslint-config-turbo": "^1.10.14",
"rimraf": "^5.0.1",
"turbo": "^1.10.14"
}
}