atomic-di 0.9.0-beta.1 → 0.9.1-beta.2
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.
- package/README.md +14 -1
- package/package.json +4 -10
package/README.md
CHANGED
@@ -1 +1,14 @@
|
|
1
|
-
|
1
|
+
# Installation
|
2
|
+
|
3
|
+
You can use any package manager.
|
4
|
+
|
5
|
+
```bash
|
6
|
+
npm add atomic-di
|
7
|
+
```
|
8
|
+
```bash
|
9
|
+
npx jsr add @ensi/di
|
10
|
+
```
|
11
|
+
|
12
|
+
# Contribution
|
13
|
+
|
14
|
+
This is free and open source project licensed under the [MIT License](LICENSE). You could help its development by contributing via [pull requests](https://github.com/ncor/atomic-di/fork) or [submitting an issue](https://github.com/ncor/atomic-di/issues).
|
package/package.json
CHANGED
@@ -1,14 +1,9 @@
|
|
1
1
|
{
|
2
2
|
"name": "atomic-di",
|
3
|
-
"version": "0.9.
|
3
|
+
"version": "0.9.1-beta.2",
|
4
4
|
"description": "A toolset for containerless dependency injection.",
|
5
|
-
"repository":
|
6
|
-
|
7
|
-
"url": "https://github.com/ncor/atomic-di.git"
|
8
|
-
},
|
9
|
-
"bugs": {
|
10
|
-
"url": "https://github.com/ncor/atomic-di/issues"
|
11
|
-
},
|
5
|
+
"repository": "https://github.com/ncor/atomic-di",
|
6
|
+
"bugs": "https://github.com/ncor/atomic-di/issues",
|
12
7
|
"homepage": "https://github.com/ncor/atomic-di#readme",
|
13
8
|
"exports": {
|
14
9
|
".": {
|
@@ -32,7 +27,6 @@
|
|
32
27
|
},
|
33
28
|
"scripts": {
|
34
29
|
"build": "npx tsup",
|
35
|
-
"test": "pnpx vitest coverage --coverage"
|
36
|
-
"benchmark": "pnpx vitest benchmark"
|
30
|
+
"test": "pnpx vitest coverage --coverage"
|
37
31
|
}
|
38
32
|
}
|