ditox-react
Version:
Dependency injection container for React.js
74 lines (73 loc) • 1.89 kB
JSON
{
"name": "ditox-react",
"version": "3.1.0",
"description": "Dependency injection container for React.js",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "Mikhail Nasyrov <mikhail@mnasyrov.com> (https://github.com/mnasyrov)",
"homepage": "https://github.com/mnasyrov/ditox",
"bugs": "https://github.com/mnasyrov/ditox/issues",
"repository": {
"type": "git",
"url": "https://github.com/mnasyrov/ditox.git"
},
"keywords": [
"react",
"react.js",
"dependency container",
"dependency injection",
"typescript",
"javascript",
"npm",
"dependency",
"injection",
"container",
"module",
"ioc",
"di"
],
"engines": {
"node": ">=12"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"unpkg": "dist/umd/index.js",
"umd:main": "dist/umd/index.js",
"browser": "dist/browser/index.js",
"react-native": "dist/browser/index.js",
"types": "dist/esm/index.d.ts",
"source": "src/index.ts",
"sideEffects": false,
"files": [
"dist",
"docs",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "shx rm -rf dist lib",
"build": "npm run build:cjs && npm run build:esm && npm run build:rollup",
"build:cjs": "tsc -p tsconfig.build.json --outDir dist/cjs --module commonjs",
"build:esm": "tsc -p tsconfig.build.json --outDir dist/esm --module es2015",
"build:rollup": "rollup -c",
"typedoc": "typedoc"
},
"dependencies": {
"ditox": "3.1.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@testing-library/react": "16.2.0",
"@types/react": "19.0.10",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-test-renderer": "19.0.0"
},
"gitHead": "e9d435838d465b1a878d3b7bc5c7cc6e90fd241a"
}