44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "astro-reactive-library",
|
|
"description": "Astro components for building reactive user interfaces 🚀",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/ayoayco/astro-reactive-library",
|
|
"homepage": "https://ayco.io/showcase/astro-reactive-library#readme",
|
|
"author": {
|
|
"name": "Ayo Ayco",
|
|
"email": "ayo@ayco.io",
|
|
"url": "https://ayco.io"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./index.ts"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run dev -w apps/demo",
|
|
"demo": "npm run dev -w apps/demo",
|
|
"docs": "npm run dev -w apps/docs",
|
|
"landing-page": "npm run dev -w apps/landing-page",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"lint": "npm run lint --workspaces --if-present",
|
|
"lint:fix": "npm run lint:fix --workspaces --if-present",
|
|
"build": "npm run build --workspaces --if-present",
|
|
"check": "npm run check --workspaces --if-present",
|
|
"test:watch": "npm run test:watch --workspaces --if-present",
|
|
"patch": "npm version patch -w",
|
|
"minor": "npm version minor -w",
|
|
"major": "npm version major -w",
|
|
"publish": "npm publish --access public -w"
|
|
},
|
|
"license": "ISC",
|
|
"workspaces": [
|
|
"packages/form",
|
|
"packages/validator",
|
|
"apps/demo",
|
|
"apps/docs",
|
|
"apps/landing-page",
|
|
"packages/common"
|
|
],
|
|
"dependencies": {
|
|
"prettier-plugin-astro": "^0.7.0"
|
|
}
|
|
}
|