UNPKG

@codelook/codebox-registry

Version:

Service registry and monitoring for Codebox deployed applications

71 lines (70 loc) 1.68 kB
{ "name": "@codelook/codebox-registry", "version": "0.1.1", "description": "Service registry and monitoring for Codebox deployed applications", "keywords": [ "codebox", "service-registry", "deployment", "monitoring", "health-check" ], "author": "CodeLook Team", "license": "MIT", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./database": { "import": "./dist/database/index.js", "types": "./dist/database/index.d.ts" } }, "files": [ "dist", "README.md" ], "scripts": { "dev": "tsx watch src/index.ts", "build": "tsup", "clean": "rm -rf dist", "typecheck": "tsc --noEmit", "lint": "eslint src --ext .ts", "test": "vitest", "test:watch": "vitest --watch", "publish:npm": "npm publish --access public --registry https://registry.npmjs.org/" }, "dependencies": { "better-sqlite3": "^9.6.0", "chalk": "^5.3.0", "croner": "^8.0.0", "execa": "^8.0.1", "express": "^4.19.2", "node-fetch": "^3.3.2", "pino": "^9.0.0", "pino-pretty": "^11.0.0", "zod": "^3.23.8" }, "devDependencies": { "@types/better-sqlite3": "^7.6.11", "@types/express": "^4.17.21", "@types/node": "^20.14.11", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "tsup": "^8.1.0", "tsx": "^4.16.2", "typescript": "^5.5.4", "vitest": "^2.1.8" }, "engines": { "node": ">=18" }, "publishConfig": { "access": "public" } }