Files
Baradb/clients/javascript/package.json
T
dimgigov 4e7e568525 release: v1.1.0 — bug fixes, Docker, clients, SCRAM auth
- Bump version to 1.1.0 across all components
- Remove debug CI artifacts (debug.yml, test_all.nim.bak, test_lock)
- Update CHANGELOG with v1.1.0 release notes
- Bug fixes: irNeg, distributed txn, sharding, Raft majority, MVCC,
  LSM-Tree, auth (JWT + SCRAM-SHA-256), wire protocol, SQL injection,
  ReDoS, graph, vector, FTS, build warnings
- Client SDKs: JS/TS, Python, Nim, Rust with tests and examples
- Docker: production + source + test compose configs
- TLA+: crossmodal, backup, recovery specs with symmetry reduction
2026-05-13 15:05:59 +03:00

44 lines
1015 B
JSON

{
"name": "baradb",
"version": "1.1.0",
"description": "Official JavaScript/Node.js client for BaraDB — Multimodal Database Engine",
"main": "baradb.js",
"types": "baradb.d.ts",
"files": [
"baradb.js",
"baradb.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test tests/*.test.js",
"test:unit": "node --test tests/unit.test.js",
"test:integration": "node --test tests/integration.test.js",
"example": "node examples/basic.js"
},
"keywords": [
"baradb",
"database",
"multimodal",
"client",
"wire-protocol",
"vector",
"graph"
],
"author": "BaraDB Team <team@baradb.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/barabadb/baradadb.git",
"directory": "clients/javascript"
},
"bugs": {
"url": "https://github.com/barabadb/baradadb/issues"
},
"homepage": "https://docs.baradb.dev",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {}
}