@michaelganchas/ts-inject
Version:
A lightweight TypeScript dependency injection library
61 lines (60 loc) • 1.49 kB
JSON
{
"name": "@michaelganchas/ts-inject",
"version": "1.0.3",
"description": "A lightweight TypeScript dependency injection library",
"author": "Michael Ganchas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mganchas/ts-inject.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typescript",
"library",
"dependency injection",
"di",
"inversion of control",
"ioc",
"service locator",
"service",
"container",
"injector",
"inject",
"injectable",
"injection"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,json,md}\""
},
"packageManager": "yarn@3.6.4",
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.17",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.1.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0"
},
"files": [
"dist"
]
}