astro-reactive-form/package.json
Ayo Ayco 4dc020027f
feat: create astro reactive validator (#90)
* feat: initial validator component

* chore: fix eslint for validator

* chore: update package info for validator

* chore: remove vscode settings for docs

* chore: put docs and demo into apps

* chore: move package scope @astro-reactive

* test: update tests for validator

* feat: validator functions, hooks

* feat: validator sets haserrors attribute

* feat: use data-validator attributes

* feat: showValidationHints

* feature: add logic for all validators

* refactor: remove Validator component usage

* docs(validator): initial readme

* chore: comment out unsupported validator

* docs(validator): update installation

* chore: package docs and publish

* chore: update deps

* docs: update npm info on docs

* docs(validator): update docs for validator

* fix(form): handle undefined form

* test(validator): update tests

* chore: organize files; update deps

* chore: fix build scripts
2022-10-15 16:32:02 +02:00

37 lines
1.1 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",
"dev": "npm run dev -w apps/demo",
"docs": "npm run dev -w apps/docs",
"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",
"test:watch": "npm run test:watch --workspaces --if-present",
"bump:patch": "npm version patch -w",
"bump:minor": "npm version minor -w",
"bump:major": "npm version major -w",
"publish": "npm publish --access public -w"
},
"license": "ISC",
"workspaces": [
"packages/form",
"packages/validator",
"apps/demo",
"apps/docs"
]
}