47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "@tpmjs/types",
|
|
"version": "0.2.0",
|
|
"description": "Shared TypeScript types and Zod schemas for TPMJS",
|
|
"author": "TPMJS",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tpmjs/tpmjs.git",
|
|
"directory": "packages/types"
|
|
},
|
|
"homepage": "https://tpmjs.com",
|
|
"keywords": ["tpmjs", "typescript", "types", "zod", "schemas"],
|
|
"type": "module",
|
|
"exports": {
|
|
"./tool": {
|
|
"types": "./dist/tool.d.ts",
|
|
"default": "./dist/tool.js"
|
|
},
|
|
"./registry": {
|
|
"types": "./dist/registry.d.ts",
|
|
"default": "./dist/registry.js"
|
|
},
|
|
"./tpmjs": {
|
|
"types": "./dist/tpmjs.d.ts",
|
|
"default": "./dist/tpmjs.js"
|
|
}
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist .turbo"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^4.1.13"
|
|
},
|
|
"devDependencies": {
|
|
"@tpmjs/tsconfig": "workspace:*",
|
|
"tsup": "^8.3.5",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|