UNPKG

@biblioteksentralen/cloud-run-core

Version:
76 lines 2.03 kB
{ "name": "@biblioteksentralen/cloud-run-core", "version": "0.13.0", "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.16.4", "@changesets/cli": "^2.27.9", "@types/body-parser": "^1.19.5", "@types/node": "^20.16.10", "@typescript-eslint/eslint-plugin": "^8.8.0", "@typescript-eslint/parser": "^8.8.0", "eslint": "^8.57.1", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.1", "husky": "^9.1.6", "tsup": "^8.3.0", "typescript": "^5.6.2", "vitest": "^2.1.2" }, "dependencies": { "@sentry/node": "^7.119.1", "@types/express": "^5.0.0", "body-parser": "^1.20.3", "express": "^5.0.0", "http-terminator": "^3.2.0", "pino": "~9.4.0", "pino-pretty": "^11.2.2", "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" } }