atomic-di 0.9.0-beta.1 → 0.9.1-beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +14 -1
  2. package/package.json +4 -10
package/README.md CHANGED
@@ -1 +1,14 @@
1
- Not documented yet.
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.0-beta.1",
3
+ "version": "0.9.1-beta.2",
4
4
  "description": "A toolset for containerless dependency injection.",
5
- "repository": {
6
- "type": "git",
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
  }