@enkaku/client 0.6.2 → 0.6.3

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/lib/index.d.ts CHANGED
@@ -1,3 +1,14 @@
1
+ /**
2
+ * Enkaku RPC client.
3
+ *
4
+ * ## Installation
5
+ *
6
+ * ```sh
7
+ * npm install @enkaku/client
8
+ * ```
9
+ *
10
+ * @module client
11
+ */
1
12
  export { Client, type ClientParams, type InvokeChannelReturn, type InvokeReturn, type InvokeStreamReturn, } from './client.js';
2
13
  export { ABORTED } from './constants.js';
3
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACN,KAAK,YAAY,EACjB,KAAK,mBAAmB,EACxB,KAAK,YAAY,EACjB,KAAK,kBAAkB,GACxB,MAAM,aAAa,CAAA;AACpB,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EACL,MAAM,EACN,KAAK,YAAY,EACjB,KAAK,mBAAmB,EACxB,KAAK,YAAY,EACjB,KAAK,kBAAkB,GACxB,MAAM,aAAa,CAAA;AACpB,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAA"}
package/lib/index.js CHANGED
@@ -1,2 +1,12 @@
1
- export { Client } from './client.js';
1
+ /**
2
+ * Enkaku RPC client.
3
+ *
4
+ * ## Installation
5
+ *
6
+ * ```sh
7
+ * npm install @enkaku/client
8
+ * ```
9
+ *
10
+ * @module client
11
+ */ export { Client } from './client.js';
2
12
  export { ABORTED } from './constants.js';
package/package.json CHANGED
@@ -1,8 +1,20 @@
1
1
  {
2
2
  "name": "@enkaku/client",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "license": "MIT",
5
- "keywords": [],
5
+ "homepage": "https://enkaku.dev",
6
+ "description": "Enkaku RPC client",
7
+ "keywords": [
8
+ "rpc",
9
+ "client",
10
+ "json",
11
+ "jwt"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/TairuFramework/enkaku",
16
+ "directory": "packages/client"
17
+ },
6
18
  "type": "module",
7
19
  "main": "lib/index.js",
8
20
  "types": "lib/index.d.ts",
@@ -15,13 +27,13 @@
15
27
  "sideEffects": false,
16
28
  "dependencies": {
17
29
  "typescript-result": "^3.0.0",
18
- "@enkaku/token": "^0.6.1",
19
- "@enkaku/stream": "^0.6.0"
30
+ "@enkaku/token": "^0.6.4",
31
+ "@enkaku/stream": "^0.6.1"
20
32
  },
21
33
  "devDependencies": {
22
- "@enkaku/protocol": "^0.6.0",
23
- "@enkaku/transport": "^0.6.0",
24
- "@enkaku/util": "^0.6.0"
34
+ "@enkaku/protocol": "^0.6.4",
35
+ "@enkaku/transport": "^0.6.1",
36
+ "@enkaku/util": "^0.6.1"
25
37
  },
26
38
  "scripts": {
27
39
  "build:clean": "del lib",