meteor-type-validation
Version:
A lightweight set of TypeScript utilities to add proper type inference and validation for your Meteor publications and methods
55 lines (54 loc) • 1.42 kB
JSON
{
"name": "meteor-type-validation",
"version": "2.3.0",
"description": "A lightweight set of TypeScript utilities to add proper type inference and validation for your Meteor publications and methods",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"scripts": {
"test": "npm run lint",
"lint": "tsc --noEmit",
"build": "tsup src/index.ts",
"prepack": "npm run build",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JorgenVatle/meteor-type-validation.git"
},
"keywords": [
"Meteor",
"TypeScript",
"Valibot",
"improved types"
],
"author": "Jørgen Vatle <jorgen@wcaservices.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JorgenVatle/meteor-type-validation/issues"
},
"homepage": "https://github.com/JorgenVatle/meteor-type-validation#readme",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/lodash-es": "^4.17.12",
"@types/meteor": "^2.9.8",
"lodash-es": "^4.17.21",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"optionalDependencies": {
"pino": "^8.19.0"
},
"peerDependencies": {
"valibot": "^1.0.0-rc || ^1.0.0-beta || ^0.42.1"
}
}