forked from NotionX/react-notion-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "notion-utils",
"version": "6.16.0",
"type": "module",
"description": "Useful utilities for working with Notion data. Isomorphic.",
"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",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"sideEffects": false,
"files": [
"build"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
"test": "ava"
},
"dependencies": {
"is-url-superb": "^6.1.0",
"mem": "^9.0.2",
"normalize-url": "^7.0.3",
"notion-types": "^6.16.0",
"p-queue": "^7.2.0"
},
"ava": {
"snapshotDir": ".snapshots",
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--no-warnings",
"--experimental-specifier-resolution=node"
]
}
}