@jahands/notion-client
Version:
A simple and easy to use client for the Notion API
61 lines • 1.47 kB
JSON
{
"name": "@jahands/notion-client",
"version": "3.0.0",
"private": false,
"description": "A simple and easy to use client for the Notion API",
"keywords": [
"notion",
"notionapi",
"rest",
"notion-api"
],
"homepage": "https://github.com/jahands/notion-sdk-js/tree/main/packages/notion-client",
"bugs": {
"url": "https://github.com/jahands/notion-sdk-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jahands/notion-sdk-js.git",
"directory": "packages/notion-client"
},
"license": "MIT",
"author": {
"name": "Jacob Hands",
"url": "https://github.com/jahands"
},
"sideEffects": false,
"type": "module",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"node": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@types/node": "22.13.14",
"@types/node-fetch": "2.6.12"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.17.3",
"typescript": "5.5.4",
"vitest": "2.1.8",
"@repo/eslint-config": "0.1.14",
"@repo/tools": "0.2.0",
"@repo/typescript-config": "0.1.0"
},
"scripts": {
"build": "runx build tsc ./src/index.ts",
"check:lint": "run-eslint",
"check:types": "# runx check --exports",
"test": "run-vitest"
}
}