zod-matter
Version:
Typesafe front matter
84 lines • 1.99 kB
JSON
{
"name": "zod-matter",
"version": "0.1.1",
"license": "MIT",
"description": "Typesafe front matter",
"author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"devDependencies": {
"@hideoo/eslint-config": "0.14.1",
"@hideoo/prettier-config": "0.1.1",
"@hideoo/tsconfig": "0.1.0",
"@types/common-tags": "1.8.1",
"@types/node": "18.11.18",
"common-tags": "1.8.2",
"eslint": "8.31.0",
"gray-matter": "4.0.3",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"tsup": "6.5.0",
"typescript": "4.9.4",
"vitest": "0.26.3",
"zod": "3.20.2"
},
"peerDependencies": {
"gray-matter": ">=3.0.0",
"zod": ">=3.0.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@7.21.0",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"files": [
"dist",
"types"
],
"keywords": [
"markdown",
"mdx",
"front-matter",
"frontmatter",
"matter",
"yaml",
"gray-matter",
"zod",
"typescript",
"typesafe",
"schema-validation",
"runtime-validation",
"type-inference"
],
"homepage": "https://github.com/HiDeoo/zod-matter",
"repository": {
"type": "git",
"url": "https://github.com/HiDeoo/zod-matter.git"
},
"bugs": "https://github.com/HiDeoo/zod-matter/issues",
"prettier": "@hideoo/prettier-config",
"lint-staged": {
"**/*": "prettier -w -u --cache",
"**/*.{js,jsx,ts,tsx,cjs,mjs}": "eslint --cache --max-warnings=0"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"test:type": "vitest typecheck",
"lint": "prettier -c . && eslint . --cache --max-warnings=0 && tsc --noEmit"
}
}