astro-reactive-form/packages/validator/package.json
Madhav Setia dd285e72a4
docs: update links to the repository (#247)
* Link to repo updated

* Update introduction.md

* docs: update links to change logs

Co-authored-by: Ayo <ramon.aycojr@gmail.com>
2023-01-04 11:48:37 +01:00

68 lines
1.7 KiB
JSON

{
"name": "@astro-reactive/validator",
"description": "Form validation library for Astro 🔥",
"version": "0.2.6",
"repository": "https://github.com/astro-reactive/astro-reactive",
"homepage": "https://github.com/astro-reactive/astro-reactive/blob/main/packages/validator/README.md",
"author": {
"name": "Ayo Ayco",
"email": "ayo@ayco.io",
"url": "https://ayco.io"
},
"type": "module",
"exports": {
".": "./index.ts"
},
"files": [
"core/",
"Validator.astro",
"index.ts"
],
"keywords": [
"astro-component"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier -w .",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint --fix . --ext .ts,.js",
"check": "astro check && tsc --noEmit",
"clean": "rimraf node_modules .turbo dist"
},
"devDependencies": {
"@types/eslint": "^8.4.6",
"@types/node": "^18.7.18",
"@types/prettier": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"astro": "^1.5.0",
"astro-component-tester": "^0.6.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.7.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.3",
"vitest": "^0.25.2"
},
"peerDependencies": {
"astro": "^1.5.0"
},
"dependencies": {
"@astro-reactive/common": "*"
},
"main": "index.js",
"directories": {
"test": "test"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/astro-reactive/astro-reactive/issues"
},
"publishConfig": {
"access": "public"
}
}