@zdr-tools/zdr-native-web 1.8.0 → 1.9.0

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 +1 -1
  2. package/package.json +18 -11
package/README.md CHANGED
@@ -537,7 +537,7 @@ console.log(complexUrl.getHost()); // 'user:pass@example.com:8080'
537
537
 
538
538
  This package integrates seamlessly with the ZDR ecosystem:
539
539
 
540
- - **Implements** URL interfaces from `@zdr-tools/zdr-interfaces`
540
+ - **Implements** URL interfaces from `@zdr-tools/zdr-entities`
541
541
  - **Uses** event brokers from `@zdr-tools/zdr-entities`
542
542
  - **Provides** web-specific reactive services for browser environments
543
543
  - **Supports** reactive patterns for web applications
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zdr-tools/zdr-native-web",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"
@@ -14,7 +14,10 @@
14
14
  "url": "https://github.com/talbenmoshe/zdr-tools/issues"
15
15
  },
16
16
  "homepage": "https://github.com/talbenmoshe/zdr-tools/tree/master/packages/zdr-native-web#readme",
17
- "repository": "github:talbenmoshe/zdr-tools",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/talbenmoshe/zdr-tools"
20
+ },
18
21
  "type": "module",
19
22
  "main": "dist/src/index.js",
20
23
  "module": "dist/src/index.js",
@@ -30,19 +33,16 @@
30
33
  "types": "./dist/src/index.d.ts"
31
34
  }
32
35
  },
33
- "scripts": {
34
- "build": "rm -rf dist && tsc && tsc-esm-fix dist",
35
- "test": "vitest --run",
36
- "test:watch": "vitest",
37
- "lint": "pnpx eslint . --ext ts,js",
38
- "lint:fix": "pnpx eslint . --fix --ext ts,js"
36
+ "talbenmoshe": {
37
+ "artifactId": "com.talbenmoshe.zdr-native-web",
38
+ "targets": []
39
39
  },
40
40
  "lint-staged": {
41
41
  "*.{js,ts}": "pnpm lint"
42
42
  },
43
43
  "dependencies": {
44
44
  "@babel/runtime": "^7.27.3",
45
- "@zdr-tools/zdr-entities": "1.8.0",
45
+ "@zdr-tools/zdr-entities": "0.0.0-707a1ff0e79e454f06ab4ccb6f5d6f149ec44b31",
46
46
  "nanoid": "^5.1.5",
47
47
  "tslib": "^2.8.1",
48
48
  "urijs": "^1.19.11"
@@ -50,10 +50,17 @@
50
50
  "devDependencies": {
51
51
  "@types/node": "^22.15.27",
52
52
  "@types/urijs": "^1.19.25",
53
- "@zdr-tools/eslint-config-zdr": "1.0.0",
54
- "@zdr-tools/typescript-config-common": "1.1.0",
53
+ "@zdr-tools/eslint-config-zdr": "0.0.0-af5f3b2331f568bc4c94dd42d0aa692e066a0b54",
54
+ "@zdr-tools/typescript-config-common": "0.0.0-f6e74f31e4f1e7fdc541d55b9397b6e044b26ac3",
55
55
  "tsc-esm-fix": "^3.1.2",
56
56
  "typescript": "~5.8.3",
57
57
  "vitest": "3.1.4"
58
+ },
59
+ "scripts": {
60
+ "build": "rm -rf dist && tsc && tsc-esm-fix dist",
61
+ "test": "vitest --run",
62
+ "test:watch": "vitest",
63
+ "lint": "eslint . --ext ts,js",
64
+ "lint:fix": "eslint . --fix --ext ts,js"
58
65
  }
59
66
  }