@withautonomi/autonomi 0.4.2 → 0.4.4
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/Cargo.toml +1 -1
- package/README.md +76 -0
- package/artifacts/github-pages/artifact.tar +0 -0
- package/index.d.ts +106 -133
- package/package.json +18 -8
- package/src/lib.rs +363 -374
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@withautonomi/autonomi",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "NodeJS bindings for Autonomi client",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/maidsafe/autonomi.git"
|
|
9
|
+
"url": "git+https://github.com/maidsafe/autonomi.git",
|
|
10
|
+
"directory": "nodejs"
|
|
10
11
|
},
|
|
11
12
|
"napi": {
|
|
12
13
|
"name": "autonomi",
|
|
@@ -20,7 +21,9 @@
|
|
|
20
21
|
"devDependencies": {
|
|
21
22
|
"@napi-rs/cli": "^2.18.4",
|
|
22
23
|
"@types/node": "^22.13.10",
|
|
23
|
-
"ava": "^6.0.1"
|
|
24
|
+
"ava": "^6.0.1",
|
|
25
|
+
"typedoc": "^0.28.2",
|
|
26
|
+
"typescript": "^5.8.3"
|
|
24
27
|
},
|
|
25
28
|
"ava": {
|
|
26
29
|
"timeout": "3m"
|
|
@@ -32,7 +35,8 @@
|
|
|
32
35
|
"artifacts": "napi artifacts",
|
|
33
36
|
"build": "napi build --platform --release",
|
|
34
37
|
"build:debug": "napi build --platform",
|
|
35
|
-
"
|
|
38
|
+
"docs": "typedoc",
|
|
39
|
+
"prepublishOnly": "napi prepublish --tagstyle npm --skip-gh-release",
|
|
36
40
|
"test": "ava",
|
|
37
41
|
"universal": "napi universal",
|
|
38
42
|
"version": "napi version"
|
|
@@ -46,10 +50,16 @@
|
|
|
46
50
|
"vault"
|
|
47
51
|
],
|
|
48
52
|
"packageManager": "yarn@4.7.0",
|
|
53
|
+
"typedocOptions": {
|
|
54
|
+
"entryPoints": [
|
|
55
|
+
"./index.d.ts"
|
|
56
|
+
],
|
|
57
|
+
"includeVersion": true
|
|
58
|
+
},
|
|
49
59
|
"optionalDependencies": {
|
|
50
|
-
"@withautonomi/autonomi-win32-x64-msvc": "0.4.
|
|
51
|
-
"@withautonomi/autonomi-darwin-x64": "0.4.
|
|
52
|
-
"@withautonomi/autonomi-linux-x64-gnu": "0.4.
|
|
53
|
-
"@withautonomi/autonomi-darwin-arm64": "0.4.
|
|
60
|
+
"@withautonomi/autonomi-win32-x64-msvc": "0.4.4",
|
|
61
|
+
"@withautonomi/autonomi-darwin-x64": "0.4.4",
|
|
62
|
+
"@withautonomi/autonomi-linux-x64-gnu": "0.4.4",
|
|
63
|
+
"@withautonomi/autonomi-darwin-arm64": "0.4.4"
|
|
54
64
|
}
|
|
55
65
|
}
|