spicedb-embedded 0.2.0 → 0.2.5
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 +1 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -96,7 +96,7 @@ The WASM only provides a small subset of the functionality of SpiceDB, but it ha
|
|
|
96
96
|
npm install spicedb-embedded
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
-
Only the native binary for your platform is installed (via optional dependencies: `spicedb-embedded-linux-x64`, `spicedb-embedded-darwin-arm64`, `spicedb-embedded-win32-x64`).
|
|
99
|
+
Only the native binary for your platform is installed (via optional dependencies: `spicedb-embedded-linux-x64`, `spicedb-embedded-linux-arm64`, `spicedb-embedded-darwin-arm64`, `spicedb-embedded-win32-x64`).
|
|
100
100
|
|
|
101
101
|
Or from source (requires Go with CGO; build and test use the same prebuilds layout as the published package):
|
|
102
102
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spicedb-embedded",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "Embedded SpiceDB for TypeScript/Node.js — embedded authorization using the standard gRPC API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,9 +16,10 @@
|
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"spicedb-embedded-linux-x64": "0.2.
|
|
20
|
-
"spicedb-embedded-
|
|
21
|
-
"spicedb-embedded-
|
|
19
|
+
"spicedb-embedded-linux-x64": "0.2.5",
|
|
20
|
+
"spicedb-embedded-linux-arm64": "0.2.5",
|
|
21
|
+
"spicedb-embedded-darwin-arm64": "0.2.5",
|
|
22
|
+
"spicedb-embedded-win32-x64": "0.2.5"
|
|
22
23
|
},
|
|
23
24
|
"scripts": {
|
|
24
25
|
"build": "tsc",
|