[package]
name = "otter-node"
version = "0.1.1"
edition = "2024"
description = "Node.js API layer for Otter"
license = "MIT"
repository = "https://github.com/octofhir/otter"
homepage = "https://github.com/octofhir/otter"
keywords = ["typescript", "javascript", "nodejs", "runtime", "compatibility"]
categories = ["development-tools", "api-bindings"]
readme = "README.md"
[dependencies]
otter-engine = { path = "../otter-engine", version = "0.1.1" }
otter-runtime = { path = "../otter-runtime", version = "0.1.1" }
tokio = { version = "1", features = ["fs"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
base64 = "0.22"
hex = "0.4"
pathdiff = "0.2"
ring = "0.17"
uuid = { version = "1", features = ["v4"] }
getrandom = "0.2"
parking_lot = "0.12"
thiserror = "1"
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
futures-util = "0.3"
url = "2"
reqwest = { version = "0.12", features = ["json", "stream"] }
bytes = "1"
http = "1"
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
tempfile = "3"