-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "@notion-to-anything/json",
"version": "1.0.0",
"description": "JSON transformer for notion-to-anything",
"keywords": [
"notion",
"cms",
"json"
],
"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",
"exports": {
".": "./src/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"
},
"devDependencies": {
"@notionhq/client": "^5.0.0"
},
"peerDependencies": {
"@notion-to-anything/core": "workspace:*"
},
"publishConfig": {
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
}
}