@procwire/codec-arrow 0.1.1 → 0.1.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/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Apache Arrow codec for @procwire/transport.
3
3
  * Provides columnar data serialization using apache-arrow.
4
4
  *
5
- * @module
5
+ * @module Codec Arrow
6
6
  */
7
7
  import type { Table } from "apache-arrow";
8
8
  import type { SerializationCodec } from "@procwire/transport/serialization";
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Apache Arrow codec for @procwire/transport.
3
3
  * Provides columnar data serialization using apache-arrow.
4
4
  *
5
- * @module
5
+ * @module Codec Arrow
6
6
  */
7
7
  import { tableFromIPC, tableToIPC } from "apache-arrow";
8
8
  import { SerializationError } from "@procwire/transport";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@procwire/codec-arrow",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Apache Arrow IPC codec for @procwire/transport.",
5
5
  "keywords": [
6
6
  "ipc",
@@ -17,12 +17,12 @@
17
17
  "repository": {
18
18
  "type": "git",
19
19
  "url": "https://github.com/SebastianWebdev/procwire.git",
20
- "directory": "codec-arrow"
20
+ "directory": "packages/codec-arrow"
21
21
  },
22
22
  "bugs": {
23
23
  "url": "https://github.com/SebastianWebdev/procwire/issues"
24
24
  },
25
- "homepage": "https://github.com/SebastianWebdev/procwire/tree/main/codec-arrow#readme",
25
+ "homepage": "https://www.procwire.dev",
26
26
  "type": "module",
27
27
  "sideEffects": false,
28
28
  "license": "MIT",
@@ -43,10 +43,11 @@
43
43
  "LICENSE"
44
44
  ],
45
45
  "publishConfig": {
46
- "access": "public"
46
+ "access": "public",
47
+ "provenance": true
47
48
  },
48
49
  "dependencies": {
49
- "@procwire/transport": "0.1.1"
50
+ "@procwire/transport": "0.1.3"
50
51
  },
51
52
  "peerDependencies": {
52
53
  "apache-arrow": "^21.0.0"