UNPKG

@biblioteksentralen/cloud-run-core

Version:
77 lines 2.03 kB
{ "name": "@biblioteksentralen/cloud-run-core", "version": "0.14.4", "description": "Core package for NodeJS services using Cloud Run", "type": "module", "repository": { "type": "git", "url": "https://github.com/biblioteksentralen/cloud-run-core" }, "main": "./dist/index.cjs", "types": "./dist/index.d.ts", "exports": { "import": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "require": "./dist/index.cjs" } }, "sideEffects": false, "files": [ "dist/**/*.{js,cjs,mjs,d.ts,d.mts,d.cts,map}", "/README.md", "/LICENSE" ], "engines": { "node": ">=18" }, "keywords": [ "google-cloud-run", "google-cloud-logging" ], "author": "Biblioteksentralen", "license": "ISC", "devDependencies": { "@arethetypeswrong/cli": "^0.18.2", "@changesets/cli": "^2.31.0", "@eslint/js": "^9.39.4", "@types/body-parser": "^1.19.6", "@types/node": "^22.19.17", "eslint": "^9.39.4", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import": "^2.32.0", "eslint-plugin-prettier": "^5.5.5", "globals": "^16.5.0", "husky": "^9.1.7", "tsup": "^8.5.1", "typescript": "^5.9.3", "typescript-eslint": "^8.59.0", "vitest": "^4.1.5" }, "dependencies": { "@sentry/node": "^7.120.4", "@types/express": "^5.0.6", "body-parser": "^2.2.2", "express": "^5.2.1", "http-terminator": "^3.2.0", "pino": "~10.3.1", "pino-pretty": "^13.1.3", "tiny-typed-emitter": "^2.1.0" }, "prettier": { "printWidth": 120, "quoteProps": "consistent" }, "scripts": { "clean": "rm -rf ./dist/**/*.js ./dist/**/*.d.ts", "typecheck": "tsc --noEmit", "build": "tsc --noEmit && tsup src/index.ts --format cjs,esm --dts --clean --sourcemap && cp dist/index.d.ts dist/index.d.cts", "lint": "eslint src", "lint:package": "attw --pack", "test": "vitest", "changeset": "changeset" } }