@apiratorjs/async-context
Version:
A Node.js async context library leveraging the node:async_hooks module, supporting context merging and overriding.
52 lines (51 loc) • 1.21 kB
JSON
{
"name": "@apiratorjs/async-context",
"version": "1.1.5",
"description": "A Node.js async context library leveraging the node:async_hooks module, supporting context merging and overriding.",
"author": {
"name": "Oleksii Zaitsev",
"url": "https://oleksiizaitsev.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apiratorjs/async-context.git"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src",
"README.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"async-context",
"async propagation",
"nodejs",
"async hooks",
"context management",
"execution context",
"state propagation",
"context merging",
"context overriding",
"typescript",
"per-request"
],
"type": "commonjs",
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc --watch",
"test": "npm run build && node --test dist/test",
"prepare": "npm run build && node --test dist/test"
},
"engines": {
"node": ">=16.4.0"
},
"devDependencies": {
"@types/node": "^22.13.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}