ts5deco-inject
Version:
TypeScript 5 Modern Decorator Dependency Injection Framework
67 lines (66 loc) • 1.57 kB
JSON
{
"name": "ts5deco-inject",
"version": "0.1.1",
"description": "TypeScript 5 Modern Decorator Dependency Injection Framework",
"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"
}
},
"scripts": {
"build": "node build.config.js",
"build:watch": "tsc --watch",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"docs": "typedoc",
"docs:serve": "typedoc --serve",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ts5deco",
"typescript",
"dependency-injection",
"ioc",
"decorator",
"modern-decorator",
"di",
"container",
"inject",
"typescript5"
],
"author": "ts5deco",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yoonhoGo/ts5deco.git"
},
"bugs": {
"url": "https://github.com/yoonhoGo/ts5deco/issues"
},
"homepage": "https://github.com/yoonhoGo/ts5deco#readme",
"devDependencies": {
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"esbuild": "^0.25.8",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"jest-coverage-badges": "^1.1.2",
"ts-jest": "^29.0.0",
"typedoc": "^0.28.7",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}