UNPKG

next-actuator

Version:

A fully composable actuator implementation for Next.js projects

55 lines (54 loc) 1.26 kB
{ "type": "module", "name": "next-actuator", "version": "1.3.0", "author": "Ross MacPhee (https://ross.software)", "description": "A fully composable actuator implementation for Next.js projects", "homepage": "https://github.com/rossyman/next-actuator#readme", "license": "MIT", "types": "./dist/index.d.ts", "publishConfig": { "access": "public", "provenance": true }, "repository": { "type": "git", "url": "git+https://github.com/rossyman/next-actuator.git", "directory": "packages/next-actuator" }, "bugs": { "url": "https://github.com/rossyman/next-actuator/issues" }, "keywords": [ "next", "next.js", "actuator", "liveliness", "monitor", "health" ], "files": [ "dist", "README.md" ], "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "scripts": { "build": "pnpm clean && tsc -b", "verify": "npm install --package-lock-only && npm audit signatures", "release": "semantic-release", "clean": "rm -rf ./dist && rm -rf ./package-lock.json" }, "dependencies": { "es-toolkit": "^1.41.0" }, "peerDependencies": { "next": "^14 || ^15 || ^16" } }