@moltendb-web/angular 1.0.0-rc.6 → 1.1.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 +12 -8
package/README.md CHANGED
@@ -9,7 +9,7 @@ This package bridges the gap between MoltenDb's powerful Web Worker/WASM engine
9
9
  ## Installation
10
10
 
11
11
  ```bash
12
- npm install @moltendb-web/core @moltendb-web/query @moltendb-web/angular
12
+ npm install @moltendb-web/angular
13
13
  ```
14
14
 
15
15
  ---
package/package.json CHANGED
@@ -1,14 +1,21 @@
1
1
  {
2
2
  "name": "@moltendb-web/angular",
3
- "version": "1.0.0-rc.6",
3
+ "version": "1.1.0",
4
4
  "description": "Official Angular Signals wrapper for MoltenDb",
5
5
  "type": "module",
6
6
  "author": "Maximilian Both <maximilian.both27@outlook.com>",
7
7
  "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/maximilian27/moltendb-web/tree/master/packages/angular"
11
+ },
8
12
  "peerDependencies": {
9
- "@angular/core": ">=16.0.0",
10
- "@moltendb-web/core": "^1.0.0-rc.5",
11
- "@moltendb-web/query": "^1.0.0-rc.4"
13
+ "@angular/core": ">=17.0.0"
14
+ },
15
+ "dependencies": {
16
+ "@moltendb-web/core": "^1.1.0",
17
+ "@moltendb-web/query": "^1.1.0",
18
+ "tslib": "^2.3.0"
12
19
  },
13
20
  "module": "fesm2022/moltendb-web-angular.mjs",
14
21
  "typings": "index.d.ts",
@@ -23,8 +30,5 @@
23
30
  "default": "./fesm2022/moltendb-web-angular.mjs"
24
31
  }
25
32
  },
26
- "sideEffects": false,
27
- "dependencies": {
28
- "tslib": "^2.3.0"
29
- }
33
+ "sideEffects": false
30
34
  }