UNPKG

h3

Version:

Minimal H(TTP) framework built for high performance and portability.

70 lines 2.2 kB
{ "name": "h3", "version": "1.9.0", "description": "Minimal H(TTP) framework built for high performance and portability.", "repository": "unjs/h3", "license": "MIT", "sideEffects": false, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "dependencies": { "cookie-es": "^1.0.0", "defu": "^6.1.3", "destr": "^2.0.2", "iron-webcrypto": "^1.0.0", "radix3": "^1.1.0", "ufo": "^1.3.2", "uncrypto": "^0.1.3", "unenv": "^1.7.4" }, "devDependencies": { "0x": "^5.7.0", "@types/express": "^4.17.21", "@types/node": "^20.9.2", "@types/supertest": "^2.0.16", "@vitest/coverage-v8": "^0.34.6", "autocannon": "^7.12.0", "changelogen": "^0.5.5", "connect": "^3.7.0", "eslint": "^8.54.0", "eslint-config-unjs": "^0.2.1", "express": "^4.18.2", "get-port": "^7.0.0", "jiti": "^1.21.0", "listhen": "^1.5.5", "node-fetch-native": "^1.4.1", "prettier": "^3.1.0", "react": "^18.2.0", "react-dom": "^18.2.0", "supertest": "^6.3.3", "typescript": "^5.2.2", "unbuild": "^2.0.0", "vitest": "^0.34.6", "zod": "^3.22.4" }, "packageManager": "pnpm@8.10.5", "scripts": { "build": "unbuild", "dev": "vitest", "lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src test playground", "lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src test playground -w", "play": "listhen -w ./playground/app.ts", "profile": "0x -o -D .profile -P 'autocannon -c 100 -p 10 -d 40 http://localhost:$PORT' ./playground/server.cjs", "release": "pnpm test && pnpm build && changelogen --release && pnpm publish && git push --follow-tags", "release-rc": "pnpm test && pnpm build && changelogen --release --prerelease rc --push --publish --publishTag rc", "test": "pnpm lint && vitest --run typecheck && vitest --run --coverage", "test:types": "vitest typecheck" } }