-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "notion-md-crawler",
"version": "1.0.0",
"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": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify --sourcemap",
"prepublishOnly": "pnpm run build",
"test": "vitest"
},
"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 <[email protected]> (https://github.com/TomPenguin)",
"bugs": {
"url": "https://github.com/TomPenguin/notion-md-crawler/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.5.9",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"tsup": "^7.2.0",
"vitest": "^1.2.2"
},
"dependencies": {
"@notionhq/client": "^2.2.12",
"md-utils-ts": "^2.0.0"
}
}