notion-helper
Version:
A library of functions for working more easily with the Notion API
64 lines (63 loc) • 1.77 kB
JSON
{
"name": "notion-helper",
"description": "A library of functions for working more easily with the Notion API",
"version": "1.3.30",
"type": "module",
"main": "src/index.mjs",
"browser": "dist/browser/index.js",
"types": "dist/index.d.mts",
"exports": {
".": {
"browser": "./dist/browser/index.js",
"node": "./src/index.mjs",
"import": "./src/index.mjs",
"types": "./dist/index.d.mts"
}
},
"files": [
"src",
"dist",
"README.md",
"license.md"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"esbuild": "^0.25.4",
"typedoc": "^0.28.14",
"typescript": "^5.6.3"
},
"author": "Thomas Frank <thomas@thomasjfrank.com> (https://thomasjfrank.com)",
"license": "MIT",
"keywords": [
"notion",
"notion api",
"notionapi",
"notion-api",
"browser",
"frontend"
],
"repository": {
"type": "git",
"url": "https://github.com/TomFrankly/notion-helper"
},
"scripts": {
"build": "npm run build:types && npm run build:browser",
"build:types": "tsc",
"build:browser": "esbuild src/index.mjs --bundle --format=esm --outfile=dist/browser/index.js --external:@notionhq/client",
"dev": "esbuild src/index.mjs --bundle --format=esm --outfile=dist/browser/index.js --external:@notionhq/client --watch",
"clean": "rm -rf dist docs",
"docs": "typedoc && touch docs/.nojekyll",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/TomFrankly/notion-helper",
"bugs": {
"url": "https://github.com/TomFrankly/notion-helper/issues"
},
"funding": {
"type": "individual",
"url": "https://thomasjfrank.com"
}
}