@wessberg/di
Advanced tools
Comparing version 2.1.0 to 3.0.0
The MIT License (MIT) | ||
Copyright © 2022 [Frederik Wessberg](mailto:frederikwessberg@hotmail.com) ([@FredWessberg](https://twitter.com/FredWessberg)) ([Website](https://github.com/wessberg)) | ||
Copyright © 2024 | ||
@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy |
103
package.json
{ | ||
"name": "@wessberg/di", | ||
"version": "2.1.0", | ||
"version": "3.0.0", | ||
"description": "A compile-time powered Dependency-Injection container for Typescript that holds services and can produce instances of them as required.", | ||
"scripts": { | ||
"generate:sandhog": "sandhog all --yes", | ||
"generate:changelog": "standard-changelog --first-release", | ||
"generate:all": "pnpm run generate:sandhog && pnpm run generate:changelog", | ||
"clean": "rimraf dist", | ||
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --color", | ||
"prettier": "prettier --write \"{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}\"", | ||
"prebuild": "pnpm run clean", | ||
"build": "pnpm run prebuild && pnpm run rollup", | ||
"prewatch": "pnpm run clean", | ||
"watch": "pnpm run prewatch && pnpm run rollup -- --watch", | ||
"rollup": "rollup -c rollup.config.js", | ||
"preversion": "pnpm run lint && pnpm run build", | ||
"version": "pnpm run preversion && pnpm run generate:all && git add .", | ||
"release": "np --no-cleanup --no-yarn --no-tests", | ||
"update:check": "pnpx npm-check-updates -x typescript-* --dep dev,prod", | ||
"update:commit": "pnpx npm-check-updates -u -x typescript-* --dep dev,prod && pnpm update && pnpm install" | ||
}, | ||
"keywords": [ | ||
@@ -36,30 +18,35 @@ "DI", | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^5.18.0", | ||
"@typescript-eslint/parser": "^5.18.0", | ||
"@wessberg/ts-config": "^2.0.0", | ||
"rollup-plugin-ts": "^2.0.5", | ||
"typescript": "4.6.3", | ||
"tslib": "^2.3.1", | ||
"npm-check-updates": "^12.5.8", | ||
"sandhog": "^1.0.43", | ||
"standard-changelog": "^2.0.27", | ||
"eslint": "^8.12.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-jsdoc": "^38.1.6", | ||
"husky": "^7.0.4", | ||
"np": "^7.6.1", | ||
"pnpm": "^6.32.4", | ||
"prettier": "^2.6.2", | ||
"pretty-quick": "^3.1.3", | ||
"rimraf": "^3.0.2", | ||
"rollup": "^2.70.1" | ||
"@types/node": "22.7.6", | ||
"@wessberg/prettier-config": "^1.0.0", | ||
"@wessberg/ts-config": "^5.0.20", | ||
"@eslint/js": "9.12.0", | ||
"eslint": "^9.12.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-jsdoc": "^50.4.3", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"typescript-eslint": "^8.10.0", | ||
"typescript": "5.6.3", | ||
"npm-check-updates": "^17.1.4", | ||
"sandhog": "^3.0.2", | ||
"standard-changelog": "^6.0.0", | ||
"husky": "^9.1.6", | ||
"lint-staged": "^15.2.10", | ||
"tsup": "^8.3.0", | ||
"np": "^10.0.7", | ||
"pnpm": "^9.12.2", | ||
"prettier": "^3.3.3", | ||
"rimraf": "^6.0.1", | ||
"tsx": "^4.19.1" | ||
}, | ||
"dependencies": {}, | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"browser": "./dist/esm/index.js", | ||
"types": "./dist/esm/index.d.ts", | ||
"typings": "./dist/esm/index.d.ts", | ||
"es2015": "./dist/esm/index.js", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"type": "module", | ||
"types": "./dist/index.d.ts", | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.js", | ||
"repository": { | ||
@@ -84,3 +71,3 @@ "type": "git", | ||
"engines": { | ||
"node": ">=9.0.0" | ||
"node": ">=12.0.0" | ||
}, | ||
@@ -90,3 +77,23 @@ "license": "MIT", | ||
"dist/**/*.*" | ||
] | ||
} | ||
], | ||
"lint-staged": { | ||
"*": "prettier --ignore-unknown --write" | ||
}, | ||
"prettier": "@wessberg/prettier-config", | ||
"scripts": { | ||
"generate:sandhog": "sandhog all --yes", | ||
"generate:changelog": "standard-changelog --first-release", | ||
"generate:all": "pnpm run generate:sandhog && pnpm run generate:changelog", | ||
"clean": "rimraf dist", | ||
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --color --fix", | ||
"prettier": "prettier --write \"{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}\"", | ||
"test": "node --import tsx --test \"./test/**/*.test.ts\"", | ||
"prebuild": "pnpm run clean", | ||
"build": "pnpm run clean && tsup \"src/index.ts\" --sourcemap --dts --format esm,cjs", | ||
"preversion": "pnpm run lint && pnpm run build", | ||
"version": "pnpm run preversion && pnpm run generate:all && git add .", | ||
"release": "np --no-cleanup --no-yarn --no-tests", | ||
"update:check": "pnpx npm-check-updates --dep dev,prod", | ||
"update:commit": "pnpx npm-check-updates -u --dep dev,prod && pnpm update && pnpm install" | ||
} | ||
} |
@@ -47,6 +47,2 @@ <!-- SHADOW_SECTION_LOGO_START --> | ||
| <a href="https://usebubbles.com"><img alt="Bubbles" src="https://uploads-ssl.webflow.com/5d682047c28b217055606673/5e5360be16879c1d0dca6514_icon-thin-128x128%402x.png" height="70" /></a> | <a href="https://github.com/cblanc"><img alt="Christopher Blanchard" src="https://avatars0.githubusercontent.com/u/2160685?s=400&v=4" height="70" /></a> | <a href="https://github.com/ideal-postcodes"><img alt="Ideal Postcodes" src="https://avatars.githubusercontent.com/u/4996310?s=200&v=4" height="70" /></a> | <a href="https://www.xerox.com"><img alt="Xerox" src="https://avatars.githubusercontent.com/u/9158512?s=200&v=4" height="70" /></a> | <a href="https://changelog.me"><img alt="Trent Raymond" src="https://avatars.githubusercontent.com/u/1509616?v=4" height="70" /></a> | | ||
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | | ||
| [Bubbles](https://usebubbles.com)<br><strong>Twitter</strong>: [@usebubbles](https://twitter.com/usebubbles) | [Christopher Blanchard](https://github.com/cblanc) | [Ideal Postcodes](https://github.com/ideal-postcodes) | [Xerox](https://www.xerox.com) | [Trent Raymond](https://changelog.me) | | ||
### Patreon | ||
@@ -76,3 +72,2 @@ | ||
- [Contributing](#contributing) | ||
- [Maintainers](#maintainers) | ||
- [FAQ](#faq) | ||
@@ -124,3 +119,3 @@ - [This is pure magic. How does it work?](#this-is-pure-magic-how-does-it-work) | ||
```typescript | ||
import { DIContainer } from "@wessberg/di"; | ||
import {DIContainer} from "@wessberg/di"; | ||
@@ -188,8 +183,2 @@ // Instantiate a new container for services | ||
## Maintainers | ||
| <a href="mailto:frederikwessberg@hotmail.com"><img alt="Frederik Wessberg" src="https://avatars2.githubusercontent.com/u/20454213?s=460&v=4" height="70" /></a> | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| [Frederik Wessberg](mailto:frederikwessberg@hotmail.com)<br><strong>Twitter</strong>: [@FredWessberg](https://twitter.com/FredWessberg)<br><strong>Github</strong>: [@wessberg](https://github.com/wessberg)<br>_Lead Developer_ | | ||
<!-- SHADOW_SECTION_MAINTAINERS_END --> | ||
@@ -215,4 +204,4 @@ | ||
MIT © [Frederik Wessberg](mailto:frederikwessberg@hotmail.com) ([@FredWessberg](https://twitter.com/FredWessberg)) ([Website](https://github.com/wessberg)) | ||
MIT © | ||
<!-- SHADOW_SECTION_LICENSE_END --> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Yes
76796
21
518
203