UNPKG

@rmk-labs/typescript-dependency-injector

Version:
71 lines (70 loc) 1.73 kB
{ "name": "@rmk-labs/typescript-dependency-injector", "version": "0.10.0", "description": "Dependency injection framework for TypeScript", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "publishConfig": { "access": "public" }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "test": "jest --coverage", "lint": "eslint ./src ./tests", "check": "npm run lint && npm run test", "lint:fix": "eslint src tests --fix", "prepublishOnly": "npm run build", "clean": "rm -rf dist" }, "keywords": [ "dependency-injection", "dependency-injector", "di", "ioc", "inversion-of-control", "typescript", "container" ], "author": "RMK Labs", "license": "BSD-3-Clause", "funding": { "type": "github", "url": "https://github.com/sponsors/rmk135" }, "repository": { "type": "git", "url": "git+https://github.com/rmk-labs/typescript-dependency-injector.git" }, "bugs": { "url": "https://github.com/rmk-labs/typescript-dependency-injector/issues" }, "homepage": "https://github.com/rmk-labs/typescript-dependency-injector#readme", "devDependencies": { "@eslint/js": "^9.13.0", "@types/jest": "^29.5.14", "@types/node": "^22.7.7", "eslint": "^9.13.0", "jest": "^29.7.0", "ts-jest": "^29.2.5", "tsup": "^8.3.5", "typescript": "^5.6.3", "typescript-eslint": "^8.10.0" }, "engines": { "node": ">=16.0.0" } }