ts-fp-di
Version:
Tiny TypeScript functional dependency injection, based on AsyncLocalStorage. Supports Node.js, Deno
44 lines (43 loc) • 945 B
JSON
{
"name": "ts-fp-di",
"version": "0.22.0",
"description": "Tiny TypeScript functional dependency injection, based on AsyncLocalStorage. Supports Node.js, Deno",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:darky/ts-fp-di.git"
},
"keywords": [
"fp",
"functional",
"di",
"dependency",
"injection",
"typescript",
"ts",
"async",
"local",
"storage",
"asynclocalstorage",
"deno"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && node --test dist/test.js"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"author": "Vladislav Botvin",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.7.4",
"@types/sinon": "^17.0.3",
"sinon": "^19.0.2",
"typescript": "5.6.2"
}
}