UNPKG

notion-page-tree

Version:

Recursively fetch nested Notion pages from the root page/database/block node.

63 lines 1.69 kB
{ "name": "notion-page-tree", "version": "1.1.1", "main": "./dist/index.js", "files": [ "dist/**/*" ], "license": "MIT", "packageManager": "yarn@3.2.0", "homepage": "https://github.com/jan9won/notion-page-tree/tree/main/packages/notion-page-tree/#readme", "description": "Recursively fetch nested Notion pages from the root page/database/block node.", "keywords": [ "notion", "page", "tree", "recursive", "fetch", "nested", "search", "server" ], "author": { "name": "Jangwon Suh", "email": "jan9won@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/jan9won/notion-page-tree.git", "directory": "packages/notion-page-tree" }, "scripts": { "dev": "ts-node ./src/index.ts", "test": "jest ./src --forceExit", "test:watch": "yarn test --watch", "test:debug": "yarn test --debug --json --outputFile=./tests/testlog.json", "serve": "ts-node sample/index.ts", "build": "tsc -p ./tsconfig.json", "patch": "npm version patch", "minor": "npm version minor", "major": "npm version major", "publish": "yarn npm publish", "lint": "yarn dlx eslint src" }, "dependencies": { "@notionhq/client": "^1.0.4", "@types/dotenv": "^8.2.0", "@types/lunr": "^2.3.4", "dotenv": "^16.0.0", "enquirer": "^2.3.6", "express": "^4.18.1", "lunr": "^2.3.9" }, "devDependencies": { "@babel/core": "^7.17.9", "@babel/preset-env": "^7.16.11", "@babel/preset-typescript": "^7.16.7", "babel-jest": "^27.5.1", "jest": "^27.5.1", "object-sizeof": "^1.6.3", "ts-node": "^10.7.0", "typescript": "^4.6.3" } }