@laminardb/node 0.30.0-alpha.1

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/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@laminardb/node",
3
+ "version": "0.30.0-alpha.1",
4
+ "description": "Embedded streaming SQL for Node.js \u2014 official LaminarDB native binding",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "index.js",
9
+ "dist"
10
+ ],
11
+ "napi": {
12
+ "binaryName": "laminar_nodejs",
13
+ "targets": [
14
+ "x86_64-unknown-linux-gnu",
15
+ "x86_64-unknown-linux-musl",
16
+ "aarch64-unknown-linux-gnu",
17
+ "aarch64-unknown-linux-musl",
18
+ "x86_64-apple-darwin",
19
+ "aarch64-apple-darwin",
20
+ "x86_64-pc-windows-msvc"
21
+ ]
22
+ },
23
+ "scripts": {
24
+ "build": "napi build --platform --release && tsc && node scripts/split-export-chains.mjs",
25
+ "build:debug": "napi build --platform && tsc && node scripts/split-export-chains.mjs",
26
+ "artifacts": "napi artifacts",
27
+ "prepublishOnly": "napi prepublish -t npm",
28
+ "version": "napi version",
29
+ "test": "vitest run",
30
+ "format": "prettier --write .",
31
+ "format:check": "prettier --check .",
32
+ "build:ts": "tsc && node scripts/split-export-chains.mjs",
33
+ "lint": "eslint .",
34
+ "bench": "node benchmarks/bench.mjs"
35
+ },
36
+ "engines": {
37
+ "node": ">= 20"
38
+ },
39
+ "license": "Apache-2.0",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/laminardb/laminardb-nodejs.git"
43
+ },
44
+ "keywords": [
45
+ "laminardb",
46
+ "streaming",
47
+ "sql",
48
+ "arrow",
49
+ "napi-rs",
50
+ "node-addon"
51
+ ],
52
+ "devDependencies": {
53
+ "@eslint/js": "^10.0.1",
54
+ "@napi-rs/cli": "^3.8.6",
55
+ "@types/node": "^26.4.1",
56
+ "apache-arrow": "^21.2.0",
57
+ "eslint": "^10.9.1",
58
+ "prettier": "^3.9.6",
59
+ "tinybench": "^6.1.4",
60
+ "typescript": "^6.0.3",
61
+ "typescript-eslint": "^8.69.0",
62
+ "vitest": "^4.1.11"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public",
66
+ "registry": "https://registry.npmjs.org/"
67
+ },
68
+ "optionalDependencies": {
69
+ "@laminardb/node-darwin-x64": "0.30.0-alpha.1",
70
+ "@laminardb/node-darwin-arm64": "0.30.0-alpha.1",
71
+ "@laminardb/node-linux-x64-gnu": "0.30.0-alpha.1",
72
+ "@laminardb/node-linux-x64-musl": "0.30.0-alpha.1",
73
+ "@laminardb/node-linux-arm64-gnu": "0.30.0-alpha.1",
74
+ "@laminardb/node-linux-arm64-musl": "0.30.0-alpha.1",
75
+ "@laminardb/node-win32-x64-msvc": "0.30.0-alpha.1"
76
+ }
77
+ }