UNPKG

@evyweb/ioctopus

Version:

A simple IoC container for JavaScript and TypeScript for classes and functions.

52 lines (51 loc) 1.28 kB
{ "name": "@evyweb/ioctopus", "version": "1.4.1", "description": "A simple IoC container for JavaScript and TypeScript for classes and functions.", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist/" ], "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "lint": "tsc --noEmit", "test": "vitest run", "test:coverage": "vitest run --coverage", "changeset": "npx changeset", "changeset:version": "npx changeset version", "publish:package": "npm run build && npx changeset publish" }, "keywords": [ "ioc", "inversion of control", "dependency injection", "dependency inversion", "typescript", "inversify", "typescript-ioc", "tsyringe", "di" ], "author": "Evyweb", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Evyweb/ioctopus.git" }, "publishConfig": { "access": "public" }, "devDependencies": { "@changesets/cli": "^2.30.0", "@types/node": "^24.12.0", "@vitest/coverage-v8": "^3.2.4", "jest-extended": "^6.0.0", "ts-node": "^10.9.2", "tsup": "^8.5.1", "typescript": "^5.9.3", "vitest": "^3.2.4", "vitest-mock-extended": "^3.1.0" } }