UNPKG

@elysiajs/node

Version:

Plugin for Elysia for retreiving Bearer token

58 lines (57 loc) 1.47 kB
{ "name": "@elysiajs/node", "version": "1.4.0", "description": "Plugin for Elysia for retreiving Bearer token", "license": "MIT", "scripts": { "dev": "tsx --watch ./example/index.ts", "test": "bun 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" }, "dependencies": { "@hono/node-server": "^1.19.2" }, "peerDependencies": { "elysia": ">= 1.4.0" }, "devDependencies": { "@elysiajs/cors": "^1.3.0", "@elysiajs/swagger": "^1.3.0", "@types/node": "^22.10.2", "elysia": "^1.4.0", "eslint": "9.17.0", "tsup": "^8.3.5", "tsx": "^4.19.2", "typescript": "^5.7.2", "vitest": "^2.1.8" }, "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/cjs/index.js" } }, "keywords": [ "elysia", "bearer", "authentication" ], "repository": { "type": "git", "url": "https://github.com/elysiajs/node" }, "author": { "name": "saltyAom", "url": "https://github.com/SaltyAom", "email": "saltyaom@gmail.com" }, "homepage": "https://github.com/elysiajs/node", "bugs": "https://github.com/elysiajs/node/issues" }