UNPKG

exact-mirror

Version:

Mirror exact value to TypeBox/OpenAPI model

60 lines (59 loc) 1.48 kB
{ "name": "exact-mirror", "version": "1.2.2", "description": "Mirror exact value to TypeBox/OpenAPI model", "license": "MIT", "scripts": { "dev": "bun run --watch example/index.ts", "test": "bun test && npm run test:node", "test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js", "build": "bun build.ts", "release": "npm run build && npm run test && npm publish --access public" }, "peerDependencies": { "typebox": ">= 1.1.0" }, "peerDependenciesMeta": { "typebox": { "optional": true } }, "devDependencies": { "@types/bun": "1.3.8", "elysia": "^1.4.28", "eslint": "9.6.0", "mitata": "^1.0.33", "tsdown": "^0.22.2", "tsx": "^4.19.2", "typebox": "^1.1.15", "typescript": "^6.0.0" }, "main": "./dist/cjs/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "keywords": [ "elysia", "exact", "mirror", "typebox" ], "repository": { "type": "git", "url": "https://github.com/elysiajs/exact-mirror" }, "author": { "name": "saltyAom", "url": "https://github.com/SaltyAom", "email": "saltyaom@gmail.com" }, "homepage": "https://github.com/elysiajs/exact-mirror", "bugs": "https://github.com/elysiajs/exact-mirror/issues" }