forked from databricks/zerobus-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@databricks/zerobus-ingest-sdk",
"version": "1.1.0",
"description": "TypeScript/Node.js SDK for streaming data ingestion into Databricks Delta tables using Zerobus",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"databricks",
"delta",
"streaming",
"ingestion",
"zerobus",
"typescript",
"rust"
],
"repository": {
"type": "git",
"url": "https://github.com/databricks/zerobus-sdk"
},
"license": "Apache-2.0",
"files": [
"index.js",
"index.d.ts",
"README.md",
"LICENSE",
"NOTICE",
"src/",
"utils/",
"schemas/",
"Cargo.toml",
"Cargo.lock",
"build.rs"
],
"napi": {
"name": "zerobus-ingest-sdk",
"triples": {
"defaults": false,
"additional": [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"aarch64-apple-darwin"
]
}
},
"engines": {
"node": ">= 16"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:arrow": "napi build --platform --release --features arrow-flight",
"build:debug": "napi build --platform",
"build:debug:arrow": "napi build --platform --features arrow-flight",
"build:proto": "mkdir -p examples/generated && pbjs -t static-module -w commonjs -o examples/generated/air_quality.js schemas/air_quality.proto && pbts -o examples/generated/air_quality.d.ts examples/generated/air_quality.js && protoc --descriptor_set_out=schemas/air_quality_descriptor.pb --include_imports schemas/air_quality.proto",
"test": "tsx --test test/unit.test.ts test/integration.test.ts",
"test:unit": "tsx --test test/unit.test.ts",
"test:integration": "tsx --test test/integration.test.ts",
"universal": "napi universal",
"version": "napi version",
"example:json:single": "tsx examples/json/single.ts",
"example:json:batch": "tsx examples/json/batch.ts",
"example:proto:single": "tsx examples/proto/single.ts",
"example:proto:batch": "tsx examples/proto/batch.ts",
"example:arrow": "tsx examples/arrow/batch.ts"
},
"optionalDependencies": {
"@databricks/zerobus-ingest-sdk-linux-x64-gnu": "1.1.0",
"@databricks/zerobus-ingest-sdk-linux-arm64-gnu": "1.1.0",
"@databricks/zerobus-ingest-sdk-win32-x64-msvc": "1.1.0",
"@databricks/zerobus-ingest-sdk-darwin-x64": "1.1.0",
"@databricks/zerobus-ingest-sdk-darwin-arm64": "1.1.0"
},
"peerDependencies": {
"protobufjs": "^7.0.0",
"apache-arrow": "^18.0.0"
},
"peerDependenciesMeta": {
"protobufjs": {
"optional": true
},
"apache-arrow": {
"optional": true
}
},
"devDependencies": {
"@napi-rs/cli": "^2.18.0",
"@types/node": "^20.0.0",
"apache-arrow": "^18.1.0",
"dotenv": "^17.2.3",
"protobufjs": "^7.5.4",
"protobufjs-cli": "^2.0.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0"
},
"overrides": {
"glob": "^10.0.0"
}
}