UNPKG

1.71 kBJSONView Raw
1{
2 "name": "@notionhq/client",
3 "version": "1.0.3",
4 "description": "A simple and easy to use client for the Notion API",
5 "engines": {
6 "node": ">=12"
7 },
8 "homepage": "https://developers.notion.com/docs/getting-started",
9 "bugs": {
10 "url": "https://github.com/makenotion/notion-sdk-js/issues"
11 },
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/makenotion/notion-sdk-js/"
15 },
16 "keywords": [
17 "notion",
18 "notionapi",
19 "rest",
20 "notion-api"
21 ],
22 "main": "./build/src",
23 "types": "./build/src/index.d.ts",
24 "scripts": {
25 "prepare": "npm run build",
26 "prepublishOnly": "npm run checkLoggedIn && npm run lint && npm run test",
27 "build": "tsc",
28 "prettier": "prettier --write .",
29 "lint": "prettier --check . && eslint . --ext .ts && cspell '**/*' ",
30 "test": "ava",
31 "check-links": "git ls-files | grep md$ | xargs -n 1 markdown-link-check",
32 "prebuild": "npm run clean",
33 "clean": "rm -rf ./build",
34 "checkLoggedIn": "./scripts/verifyLoggedIn.sh"
35 },
36 "author": "",
37 "license": "MIT",
38 "files": [
39 "build/package.json",
40 "build/src/**"
41 ],
42 "dependencies": {
43 "@types/node-fetch": "^2.5.10",
44 "node-fetch": "^2.6.1"
45 },
46 "devDependencies": {
47 "@ava/typescript": "^2.0.0",
48 "@typescript-eslint/eslint-plugin": "^4.22.0",
49 "@typescript-eslint/parser": "^4.22.0",
50 "ava": "^3.15.0",
51 "cspell": "^5.4.1",
52 "eslint": "^7.24.0",
53 "markdown-link-check": "^3.8.7",
54 "prettier": "^2.3.0",
55 "typescript": "^4.2.4"
56 }
57}