@uni-ts/model
Version:
Utils for creating data models in TypeScript.
53 lines • 1.16 kB
JSON
{
"name": "@uni-ts/model",
"version": "0.3.1",
"description": "Utils for creating data models in TypeScript.",
"keywords": [
"model",
"data",
"modeling",
"type-safe",
"validation"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uni-ts/uni-ts.git",
"directory": "packages/model"
},
"author": "Konrad Szwarc <konrad.szwarc.dev@gmail.com> (https://github.com/KonradSzwarc)",
"homepage": "https://github.com/uni-ts/uni-ts#readme",
"bugs": "https://github.com/uni-ts/uni-ts/issues",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./safe": {
"import": "./dist/safe.js",
"types": "./dist/safe.d.ts"
}
},
"files": [
"dist"
],
"devDependencies": {
"@uni-ts/result": "0.0.4"
},
"peerDependencies": {
"@uni-ts/result": "^0.0.2"
},
"peerDependenciesMeta": {
"@uni-ts/result": {
"optional": true
}
},
"scripts": {
"build": "tsc -b",
"test": "vitest"
}
}