-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.1 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.1 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@notion-to-anything/core",
"version": "1.0.0",
"description": "core utilities for notion-to-anything",
"keywords": [
"notion",
"cms"
],
"homepage": "https://github.com/alvis/notion-to-anything-monorepo#readme",
"bugs": {
"url": "https://github.com/alvis/notion-to-anything-monorepo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/notion-to-anything-monorepo.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"imports": {
"#client/*": "./src/client/*.ts",
"#entities/*": "./src/entities/*.ts",
"#transformer/*": "./src/transformer/*.ts",
"#traversal/*": "./src/traversal/*.ts",
"#types/*": "./src/types/*.ts"
},
"exports": {
".": "./src/index.ts",
"./traversal": "./src/traversal/index.ts"
},
"scripts": {
"build": "run build",
"coverage": "run coverage --",
"lint": "run lint --",
"prepare": "run prepare",
"test": "run test --",
"typecheck": "run typecheck",
"watch": "run watch"
},
"lint-staged": {
"*": "true"
},
"dependencies": {
"p-queue": "^9.0.0",
"type-fest": "^5.0.0"
},
"devDependencies": {
"undici": "^7.0.0"
},
"peerDependencies": {
"@notionhq/client": "^5.0.0"
},
"publishConfig": {
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./traversal": {
"types": "./lib/traversal/index.d.ts",
"default": "./lib/traversal/index.js"
}
},
"imports": {
"#client/*": {
"types": "./lib/client/*.d.ts",
"default": "./lib/client/*.js"
},
"#entities/*": {
"types": "./lib/entities/*.d.ts",
"default": "./lib/entities/*.js"
},
"#transformer/*": {
"types": "./lib/transformer/*.d.ts",
"default": "./lib/transformer/*.js"
},
"#traversal/*": {
"types": "./lib/traversal/*.d.ts",
"default": "./lib/traversal/*.js"
},
"#types/*": {
"types": "./lib/types/*.d.ts",
"default": "./lib/types/*.js"
}
}
}
}