forked from makenotion/notion-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 721 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 721 Bytes
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
{
"name": "@notionhq/client",
"version": "0.1.3",
"description": "A simple and easy to use client for the Notion API",
"engines": {
"node": ">=14.15.0"
},
"keywords": ["notion", "notionapi", "rest", "notion-api"],
"main": "./build/src",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "ava"
},
"author": "",
"license": "MIT",
"files": ["build/src/**"],
"dependencies": {
"got": "^11.8.2"
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"ava": "^3.15.0",
"eslint": "^7.24.0",
"typescript": "^4.2.4"
}
}