notion-md-crawler
Version:
A library to recursively retrieve and serialize Notion pages with customization for machine learning applications.
56 lines • 1.53 kB
JSON
{
"name": "notion-md-crawler",
"version": "1.0.2",
"description": "A library to recursively retrieve and serialize Notion pages with customization for machine learning applications.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify --sourcemap",
"prepublishOnly": "pnpm run build",
"test": "vitest",
"test:integration": "RUN_INTEGRATION_TESTS=1 vitest run tests/integration.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomPenguin/notion-md-crawler.git"
},
"keywords": [
"notion",
"crawler",
"crawling",
"serialization",
"machine-learning",
"ai",
"markdown"
],
"homepage": "https://github.com/TomPenguin/notion-md-crawler#readme",
"author": "TomPenguin <tom.penguin.zoo@gmail.com> (https://github.com/TomPenguin)",
"bugs": {
"url": "https://github.com/TomPenguin/notion-md-crawler/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.9",
"dotenv": "^17.1.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"tsup": "^8.3.5",
"vitest": "^3.0.3"
},
"dependencies": {
"@notionhq/client": "4.0.0",
"md-utils-ts": "^2.0.0"
}
}