UNPKG

@chubbyts/chubbyts-dic

Version:

Dependency injection container (DIC), PSR-11 inspired.

65 lines (64 loc) 1.52 kB
{ "name": "@chubbyts/chubbyts-dic", "type": "module", "version": "1.3.1", "description": "Dependency injection container (DIC), PSR-11 inspired.", "keywords": [ "chubbyts", "dic", "dependency injection container", "dependency injection", "container", "PSR-11" ], "author": "Dominik Zogg", "license": "MIT", "repository": "chubbyts/chubbyts-dic", "scripts": { "build": "node ./build.mjs", "cs-fix": "prettier --write src tests", "cs": "prettier --check src tests", "infection": "stryker run", "lint-fix": "eslint src tests eslint.config.mjs vitest.config.ts --fix", "lint": "eslint src tests", "prepare": "npm run build", "test": "vitest" }, "prettier": { "printWidth": 120, "tabWidth": 2, "singleQuote": true, "trailingComma": "all" }, "files": [ "dist" ], "exports": { "./*": { "types": "./*.d.ts", "require": "./*.cjs", "import": "./*.mjs", "default": "./*.mjs" } }, "engines": { "node": ">=18" }, "dependencies": { "@chubbyts/chubbyts-dic-types": "^1.3.1" }, "devDependencies": { "@chubbyts/chubbyts-eslint": "^3.0.3", "@chubbyts/chubbyts-packaging": "^3.0.2", "@stryker-mutator/core": "^8.7.1", "@stryker-mutator/vitest-runner": "^8.7.1", "@types/node": "^22.10.5", "@vitest/coverage-v8": "^2.1.8", "prettier": "^3.4.2", "typescript": "^5.7.2", "vitest": "^2.1.8" }, "publishConfig": { "access": "public" } }