Files
logseq/deps/cli/package.json
Tienson Qin f594e2034f fix(rtc): batch store and validate db (#12249)
* fix(rtc): batch store and validate db

* fix: logseq.db/transact! shouldn't distinct tx-data

since move-op include 2 steps:
1. insert-block
2. update-attrs

This results in db invalid after step 1.

* refactor: add transact-with-temp-conn!

* bump nbb-logseq and add tests for ldb/transact* fns

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: rcmerci <rcmerci@gmail.com>
2025-12-09 20:47:37 +08:00

42 lines
831 B
JSON

{
"name": "@logseq/cli",
"version": "0.4.1",
"description": "Logseq CLI",
"bin": {
"logseq": "cli.mjs"
},
"engines": {
"node": ">=22.17.0"
},
"license": "MIT",
"dependencies": {
"@logseq/nbb-logseq": "github:logseq/nbb-logseq#feat-db-v30",
"@modelcontextprotocol/sdk": "^1.17.5",
"better-sqlite3": "~11.10.0",
"fastify": "5.3.2",
"fs-extra": "^11.3.0",
"jszip": "3.8.0",
"mldoc": "^1.5.9",
"zod": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/logseq/logseq.git",
"directory": "deps/cli"
},
"keywords": [
"logseq",
"knowledge graph",
"note taking",
"clojurescript",
"nbb"
],
"files": [
"src",
"vendor"
],
"scripts": {
"test": "yarn nbb-logseq -cp test -m nextjournal.test-runner"
}
}