{
  "name": "@texonom/ncompat",
  "version": "1.6.2",
  "type": "module",
  "description": "Compatibility layer between the official Notion API and unofficial private API.",
  "repository": "texonom/notion-node",
  "author": "Seonglae Cho <sungle3737@gmail.com>",
  "license": "MIT",
  "main": "./build/index.js",
  "module": "./build/index.js",
  "types": "./build/index.d.ts",
  "sideEffects": false,
  "files": [
    "build"
  ],
  "engines": {
    "node": ">=22.22.2"
  },
  "dependencies": {
    "p-queue": "^9.1.2",
    "@texonom/ntypes": "^1.6.2",
    "@texonom/nutils": "^1.6.2"
  },
  "devDependencies": {
    "@notionhq/client": "^5.17.0",
    "@texonom/nclient": "^1.6.2"
  },
  "peerDependencies": {
    "@notionhq/client": "^1.0.4"
  },
  "standard-version": {
    "skip": {
      "commit": true,
      "tag": true
    }
  },
  "scripts": {
    "build": "tsc && vite build",
    "watch": "vite build --watch --mode development",
    "prerelease": "standard-version --skip.changelog --prerelease",
    "release": "standard-version --release-as",
    "pu": "pnpm publish"
  }
}