UNPKG

serverstruct

Version:

Type safe and modular servers with Hono

53 lines 1.35 kB
{ "name": "serverstruct", "version": "0.3.0", "description": "Type safe and modular servers with Hono", "private": false, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "default": "./dist/index.js" } }, "keywords": [ "hono", "server", "hollywood-di", "typescript" ], "author": "Eric Afes <eriicafes@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/eriicafes/serverstruct.git" }, "bugs": { "url": "https://github.com/eriicafes/serverstruct/issues" }, "homepage": "https://github.com/eriicafes/serverstruct#readme", "devDependencies": { "@changesets/cli": "^2.27.12", "@types/node": "^20.17.17", "@vitest/coverage-v8": "^3.0.5", "shx": "^0.3.4", "tsup": "^8.3.6", "typescript": "^5.7.3", "vitest": "^3.0.5" }, "peerDependencies": { "hollywood-di": ">= 0.6.1", "hono": ">= 4.0.0" }, "scripts": { "prebuild": "shx rm -rf dist", "build": "tsc --noEmit && tsup src/index.ts --format esm,cjs --dts", "release": "pnpm run build && changeset publish", "watch": "vitest", "test": "vitest run", "test:coverage": "vitest run --coverage" } }