
* 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
30 lines
841 B
JSON
30 lines
841 B
JSON
{
|
|
"name": "demo-astro-reactive-library",
|
|
"description": "Demo App for Astro Reactive Library",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"author": "Ayo Ayco <ayo@ayco.io> (https://ayco.io)",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro"
|
|
},
|
|
"dependencies": {
|
|
"@astro-reactive/form": "file:packages/form",
|
|
"@astro-reactive/validator": "file:packages/validator",
|
|
"astro": "^1.5.0"
|
|
},
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ayoayco/astro-reactive-library.git"
|
|
},
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/ayoayco/astro-reactive-library/issues"
|
|
},
|
|
"homepage": "https://github.com/ayoayco/astro-reactive-library#readme"
|
|
}
|