di-craft 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -2
  2. package/package.json +9 -5
package/README.md CHANGED
@@ -9,8 +9,12 @@
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <img alt="NPM Version" src="https://img.shields.io/npm/v/di-craft?style=flat-square&color=%2364d4c1&link=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2Fdi-craft">
13
- <img alt="NPM package gzipped size" src="https://img.shields.io/bundlejs/size/di-craft?style=flat-square&label=gzip&color=%2364d4c1">
12
+ <a href="https://www.npmjs.com/package/di-craft">
13
+ <img
14
+ alt="npm version and bundle size"
15
+ src="https://shieldcn.dev/group/npm/di-craft+bundlephobia/minzip/di-craft.svg?variant=secondary"
16
+ />
17
+ </a>
14
18
  </p>
15
19
 
16
20
  > [!NOTE]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "di-craft",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "A tiny, type-safe dependency injection container for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -41,14 +41,18 @@
41
41
  "pre-commit": "bun run lint && bun run typecheck"
42
42
  },
43
43
  "keywords": [
44
- "dependency-injection",
45
44
  "di",
45
+ "di container",
46
+ "dependency-injection",
47
+ "dependency injection",
46
48
  "ioc",
47
- "inversion-of-control",
49
+ "inversion of control",
50
+ "ioc container",
48
51
  "typescript",
49
- "type-safe",
50
52
  "container",
51
- "scoped",
53
+ "zero dependencies",
54
+ "lightweight",
55
+ "tiny",
52
56
  "tree-shakable"
53
57
  ],
54
58
  "homepage": "https://github.com/bezmen-e/di-craft",