@dws-std/registry 1.0.0 → 1.0.1

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 +2 -0
  2. package/package.json +49 -49
package/README.md CHANGED
@@ -30,6 +30,8 @@ One registry, no duplication.
30
30
  bun add @dws-std/registry
31
31
  ```
32
32
 
33
+ > **Peer dependency:** `@dws-std/error` must be installed alongside.
34
+
33
35
  ## ⚙️ Usage
34
36
 
35
37
  ### Registering instances
package/package.json CHANGED
@@ -1,51 +1,51 @@
1
1
  {
2
- "name": "@dws-std/registry",
3
- "version": "1.0.0",
4
- "description": "Centralized, type-safe registry for managing named instances.",
5
- "keywords": [
6
- "bun",
7
- "dws",
8
- "registry",
9
- "type-safe"
10
- ],
11
- "license": "MIT",
12
- "author": "Dominus Web Services (DWS)",
13
- "repository": {
14
- "type": "git",
15
- "url": "https://github.com/Dominus-Web-Service/std",
16
- "directory": "packages/registry"
17
- },
18
- "files": [
19
- "dist"
20
- ],
21
- "type": "module",
22
- "exports": {
23
- ".": {
24
- "types": "./dist/index.d.ts",
25
- "default": "./dist/index.js"
26
- }
27
- },
28
- "scripts": {
29
- "build": "bun builder.ts",
30
- "docs": "bunx typedoc --tsconfig tsconfig.build.json",
31
- "fmt:check": "oxfmt --check",
32
- "fmt": "oxfmt",
33
- "lint:fix": "oxlint --type-aware --type-check --fix ./src",
34
- "lint:github": "oxlint --type-aware --type-check --format=github ./src",
35
- "lint": "oxlint --type-aware --type-check ./src",
36
- "test": "bun test --pass-with-no-tests --coverage"
37
- },
38
- "dependencies": {
39
- "@dws-std/error": "^2.0.0"
40
- },
41
- "devDependencies": {
42
- "@types/bun": "^1.3.10",
43
- "oxfmt": "^0.40.0",
44
- "oxlint": "^1.55.0",
45
- "oxlint-tsgolint": "^0.16.0",
46
- "typescript": "^5.9.3"
47
- },
48
- "peerDependencies": {
49
- "@dws-std/error": "^2.0.0"
50
- }
2
+ "name": "@dws-std/registry",
3
+ "version": "1.0.1",
4
+ "description": "Centralized, type-safe registry for managing named instances.",
5
+ "keywords": [
6
+ "bun",
7
+ "dws",
8
+ "registry",
9
+ "type-safe"
10
+ ],
11
+ "license": "MIT",
12
+ "author": "Dominus Web Services (DWS)",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/Dominus-Web-Service/std",
16
+ "directory": "packages/registry"
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "type": "module",
22
+ "exports": {
23
+ ".": {
24
+ "types": "./dist/index.d.ts",
25
+ "default": "./dist/index.js"
26
+ }
27
+ },
28
+ "scripts": {
29
+ "build": "bun builder.ts",
30
+ "docs": "bunx typedoc --tsconfig tsconfig.build.json",
31
+ "fmt:check": "oxfmt --check",
32
+ "fmt": "oxfmt",
33
+ "lint:fix": "oxlint --type-aware --type-check --fix ./src",
34
+ "lint:github": "oxlint --type-aware --type-check --format=github ./src",
35
+ "lint": "oxlint --type-aware --type-check ./src",
36
+ "test": "bun test --pass-with-no-tests --coverage"
37
+ },
38
+ "dependencies": {
39
+ "@dws-std/error": "^2.0.0"
40
+ },
41
+ "devDependencies": {
42
+ "@types/bun": "^1.3.10",
43
+ "oxfmt": "^0.40.0",
44
+ "oxlint": "^1.55.0",
45
+ "oxlint-tsgolint": "^0.16.0",
46
+ "typescript": "^5.9.3"
47
+ },
48
+ "peerDependencies": {
49
+ "@dws-std/error": "^2.0.0"
50
+ }
51
51
  }