@notion-md-converter/types
Version:
Notion to Markdown Converter Types
44 lines • 1.08 kB
JSON
{
"name": "@notion-md-converter/types",
"version": "0.9.0",
"description": "Notion to Markdown Converter Types",
"license": "MIT",
"author": "malvageee (https://github.com/salvage0707)",
"keywords": [
"notion",
"notion-api",
"markdown",
"md",
"converter"
],
"repository": {
"url": "https://github.com/salvage0707/notion-md-converter.git",
"type": "git",
"directory": "packages/notion-md-converter-types"
},
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"dependencies": {
"@notionhq/client": "^2.2.16"
},
"devDependencies": {
"@notion-md-converter/config": "0.9.0"
},
"scripts": {
"dev": "rollup -c -w",
"check-types": "tsc --noEmit",
"build": "rollup -c",
"build:size": "find dist -type f -exec ls -l {} \\; | awk '{total += $5} END {print \"Total size in KB:\", total/1024}'"
}
}