{
    "name": "@nivinjoseph/n-ject",
    "version": "4.0.1",
    "description": "IOC container",
    "packageManager": "yarn@4.14.1",
    "type": "module",
    "exports": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "scripts": {
        "ts-compile": "tsc -p .",
        "ts-lint": "eslint . --ext .ts",
        "ts-build": "yarn ts-compile && yarn ts-lint",
        "ts-build-dist": "yarn ts-build && tsc -p ./dist",
        "test": "yarn ts-build && node --test --enable-source-maps ./test/**/*.test.js",
        "clean-src": "find ./src -name '*.js' -delete -o -name '*.map' -delete",
        "clean-test": "find ./test -name '*.js' -delete -o -name '*.map' -delete",
        "publish-package": "yarn ts-build-dist && git add . && git commit -m 'preparing to publish new version' && yarn version patch && git add . && git commit -m 'new version' && git push && npm publish --access=public"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/nivinjoseph/n-ject.git"
    },
    "keywords": [
        "IOC",
        "inversion of control",
        "DI",
        "dependency injection"
    ],
    "author": "NiviN",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/nivinjoseph/n-ject/issues"
    },
    "homepage": "https://github.com/nivinjoseph/n-ject#readme",
    "devDependencies": {
        "@eslint/js": "10.0.1",
        "@stylistic/eslint-plugin": "5.10.0",
        "@types/node": "24.10",
        "eslint": "10.2.1",
        "eslint-import-resolver-typescript": "4.4.4",
        "eslint-plugin-import": "2.32.0",
        "typescript": "6.0.3",
        "typescript-eslint": "8.59.0"
    },
    "dependencies": {
        "@nivinjoseph/n-defensive": "2.0.3",
        "@nivinjoseph/n-exception": "2.0.3",
        "@nivinjoseph/n-ext": "2.0.5",
        "@nivinjoseph/n-util": "4.0.2",
        "tslib": "2.8.1"
    },
    "engines": {
        "node": ">=24.10"
    }
}
