Fix StartOS 0.4 TypeScript packaging to match SDK API

This commit is contained in:
MacPro
2026-04-09 15:10:44 -05:00
parent 68ec875ee7
commit 8298c083c7
3436 changed files with 867051 additions and 92 deletions
+40
View File
@@ -0,0 +1,40 @@
{
"name": "zod-deep-partial",
"version": "1.4.4",
"description": "A utility to recursively make all properties in a Zod schema optional.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest run",
"prepublishOnly": "pnpm build && pnpm test"
},
"keywords": [
"zod",
"deep",
"partial",
"nested",
"object"
],
"author": "Amir Farzamnia <amirfarzamnia@proton.me>",
"license": "MIT",
"devDependencies": {
"typescript": "^5.9.3",
"vitest": "^4.0.15",
"zod": "^4.1.13"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/amirfarzamnia/zod-deep-partial",
"bugs": {
"url": "https://github.com/amirfarzamnia/zod-deep-partial/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amirfarzamnia/zod-deep-partial.git"
},
"peerDependencies": {
"zod": "^4.1.13"
}
}