astro-reactive-form/packages/validator/package.json
2025-01-08 14:15:39 +01:00

63 lines
1.5 KiB
JSON

{
"name": "@astro-reactive/validator",
"description": "Form validation library for Astro 🔥",
"version": "0.5.0",
"repository": "https://github.com/astro-reactive/astro-reactive",
"homepage": "https://astro-reactive.js.org",
"author": "astro-reactive",
"type": "module",
"exports": {
".": "./index.ts"
},
"files": [
"core/",
"Validator.astro",
"index.ts"
],
"keywords": [
"astro-component"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier -w .",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint --fix . --ext .ts,.js",
"check": "astro check",
"clean": "rimraf node_modules .turbo dist"
},
"devDependencies": {
"@astro-reactive/eslint-config-custom": "*",
"@astro-reactive/tsconfig": "*",
"@types/eslint": "^8.4.6",
"@types/node": "^18.7.18",
"@types/prettier": "^2.7.0",
"@vitest/coverage-istanbul": "^0.34.5",
"astro": "^4.0.3",
"astro-component-tester": "^0.6.0",
"eslint": "^8.23.1",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.3",
"vitest": "^0.34.5"
},
"peerDependencies": {
"astro": ">=4.0.3"
},
"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"
}
}