@elsikora/cladi
Version:
Zero-dependency TypeScript DI toolkit with typed tokens and scoped lifecycles.
98 lines (97 loc) • 2.84 kB
JSON
{
"name": "@elsikora/cladi",
"version": "2.1.2",
"description": "Zero-dependency TypeScript DI toolkit with typed tokens and scoped lifecycles.",
"keywords": [
"clean-architecture",
"composition-root",
"dependency-injection",
"di",
"inversion-of-control",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/ElsiKora/ClaDI"
},
"license": "MIT",
"author": "ElsiKora",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"build:test": "npm run prebuild && rollup -c rollup.test.config.js",
"commit": "cz",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint ./",
"lint:all": "npm run lint && npm run lint:types",
"lint:all:fix": "npm run lint:fix && npm run lint:types:fix",
"lint:fix": "eslint --fix ./",
"lint:types": "tsc --noEmit",
"lint:types:fix": "tsc --noEmit --skipLibCheck",
"prepare": "husky",
"release": "semantic-release",
"test:all": "npm run test:unit && npm run test:e2e",
"test:e2e": "npm run build:test && vitest --config vitest.e2e.config.js --typecheck.tsconfig tsconfig.json",
"test:unit": "vitest run --config vitest.unit.config.js"
},
"config": {
"commitizen": {
"path": "@elsikora/commitizen-plugin-commitlint-ai"
}
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@elsikora/commitizen-plugin-commitlint-ai": "^2.5.0",
"@elsikora/eslint-config": "^3.10.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@saithodev/semantic-release-backmerge": "^4.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.4",
"@semantic-release/release-notes-generator": "^14.1.0",
"@vitest/coverage-v8": "^4.0.18",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^10.0.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-no-secrets": "^2.2.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"rollup": "^4.58.0",
"rollup-plugin-dts-path-alias": "^0.0.3",
"rollup-plugin-generate-package-json": "^3.2.0",
"semantic-release": "^25.0.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}