UNPKG

@codespeaks/tinydi

Version:

A simple and intuitive DI container, designed for simplicity, making dependency management seamless and easy to use.

42 lines 1.06 kB
{ "name": "@codespeaks/tinydi", "version": "0.0.6", "description": "A simple and intuitive DI container, designed for simplicity, making dependency management seamless and easy to use.", "main": "dist/index.js", "repository": { "type": "git", "url": "https://github.com/eber404/tinydi" }, "author": "@eber404", "license": "ISC", "keywords": [ "tiny-di", "simple-di", "lightweight-di", "di-container", "dependency-injection", "di", "ioc", "inversion-of-control", "typescript" ], "devDependencies": { "tsup": "^8.4.0", "tsx": "^4.19.3", "typescript": "^5.8.2" }, "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "dev": "tsx watch src/index.ts", "clear": "rm -rf dist", "clear:all": "rm -rf dist node_modules", "build": "pnpm clear && tsc", "start": "node dist/index.js", "build:watch": "tsup src/index.ts --watch --minify", "start:watch": "tsx watch dist/index.js" } }