-
-
Notifications
You must be signed in to change notification settings - Fork 585
/
package.json
35 lines (35 loc) · 887 Bytes
/
package.json
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
31
32
33
34
35
{
"name": "notion-client",
"version": "7.1.5",
"type": "module",
"description": "Robust TypeScript client for the unofficial Notion API.",
"repository": "NotionX/react-notion-x",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"main": "./build/index.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"sideEffects": false,
"files": [
"build"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
"clean": "del build",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"ky": "^1.7.2",
"notion-types": "workspace:*",
"notion-utils": "workspace:*",
"p-map": "^7.0.2"
}
}