@stone-js/service-container
Version:
Javascript/Typescript IoC Service Container with proxy resolver and destructuring injection
87 lines (86 loc) • 2.27 kB
JSON
{
"name": "@stone-js/service-container",
"version": "0.1.2",
"description": "Javascript/Typescript IoC Service Container with proxy resolver and destructuring injection",
"author": "Mr. Stone <evensstone@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/stone-foundation/stone-js-service-container.git"
},
"homepage": "https://stonejs.dev",
"bugs": {
"url": "https://github.com/stone-foundation/stone-js-service-container/issues"
},
"keywords": [
"DI",
"IoC",
"StoneJS",
"Service",
"Factory",
"Provider",
"Injector",
"Container",
"Injection",
"Singleton"
],
"files": [
"/dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"lint": "ts-standard src",
"lint:fix": "ts-standard --fix src tests",
"predoc": "rimraf docs",
"doc": "typedoc",
"prebuild": "rimraf dist && npm run doc",
"build": "rollup -c",
"test": "vitest run",
"test:cvg": "npm run test -- --coverage",
"test:text": "npm run test:cvg -- --coverage.reporter=text",
"test:html": "npm run test:cvg -- --coverage.reporter=html",
"test:clover": "npm run test:cvg -- --coverage.reporter=clover",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.0.7",
"@vitest/coverage-v8": "^3.2.4",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"rollup": "^4.44.1",
"rollup-plugin-delete": "^3.0.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-node-externals": "^8.0.1",
"ts-standard": "^12.0.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.6",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.6.3",
"vitest": "^3.2.4"
},
"ts-standard": {
"globals": [
"it",
"test",
"expect",
"describe",
"beforeEach"
]
}
}