@sillsdev/docu-notion 0.11.1 → 0.12.0-main.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +26 -35
package/package.json
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@sillsdev/docu-notion",
|
|
3
|
-
"description": "Download Notion pages as markdown and image files, preserving hierarchy and enabling workflow properties. Works with Docusaurus.",
|
|
4
|
-
"main": "./dist/index.js",
|
|
5
|
-
"bin": "dist/index.js",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist/**/*"
|
|
8
|
-
],
|
|
9
2
|
"scripts": {
|
|
10
3
|
"test": "vitest",
|
|
11
4
|
"build": "npm run test -- --run && tsc && cp ./src/css/*.css dist/",
|
|
@@ -24,32 +17,11 @@
|
|
|
24
17
|
"pull-sample": "npm run ts -- -n $DOCU_NOTION_INTEGRATION_TOKEN -r $DOCU_NOTION_SAMPLE_ROOT_PAGE -m ./sample --locales en,es,fr,de --log-level verbose",
|
|
25
18
|
"pull-sample-with-paths": "npm run ts -- -n $DOCU_NOTION_INTEGRATION_TOKEN -r $DOCU_NOTION_SAMPLE_ROOT_PAGE -m ./sample --img-output-path ./sample_img"
|
|
26
19
|
},
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/sillsdev/docu-notion.git"
|
|
30
|
-
},
|
|
31
|
-
"license": "MIT",
|
|
32
|
-
"author": {
|
|
33
|
-
"name": "SIL Language Software Development",
|
|
34
|
-
"email": "sillsdev@users.noreply.github.com",
|
|
35
|
-
"url": "https://github.com/sillsdev"
|
|
36
|
-
},
|
|
37
|
-
"engines": {
|
|
38
|
-
"node": ">=12.0"
|
|
39
|
-
},
|
|
40
|
-
"keywords": [
|
|
41
|
-
"docusaurus",
|
|
42
|
-
"notion",
|
|
43
|
-
"markdown"
|
|
44
|
-
],
|
|
45
|
-
"bugs": {
|
|
46
|
-
"url": "https://github.com/sillsdev/docu-notion/issues"
|
|
47
|
-
},
|
|
48
|
-
"homepage": "https://github.com/sillsdev/docu-notion#readme",
|
|
49
20
|
"//file-type": "have to use this version before they switched to ESM, which gives a compile error related to require()",
|
|
50
21
|
"//node-fetch@2.6.6file-type": "have to use this version before they switched to ESM, which gives a compile error related to require()",
|
|
51
22
|
"//chalk@4": "also ESM related problem",
|
|
52
23
|
"//notion-client@4": "also ESM related problem",
|
|
24
|
+
"//note: ts-node": "really is a runtime dependency",
|
|
53
25
|
"dependencies": {
|
|
54
26
|
"@notionhq/client": "2.2.3",
|
|
55
27
|
"chalk": "^4.1.2",
|
|
@@ -64,6 +36,7 @@
|
|
|
64
36
|
"notion-client": "^4",
|
|
65
37
|
"notion-to-md": "^2.5.5",
|
|
66
38
|
"path": "^0.12.7",
|
|
39
|
+
"ts-node": "^10.2.1",
|
|
67
40
|
"sanitize-filename": "^1.6.3"
|
|
68
41
|
},
|
|
69
42
|
"devDependencies": {
|
|
@@ -83,21 +56,39 @@
|
|
|
83
56
|
"prettier": "^2.2.1",
|
|
84
57
|
"rimraf": "^4.1.2",
|
|
85
58
|
"semantic-release": "^19.0.2",
|
|
86
|
-
"ts-node": "^10.2.1",
|
|
87
59
|
"typescript": "^4.6.4",
|
|
88
60
|
"vite": "^4.2.1",
|
|
89
61
|
"vitest": "^0.30.1"
|
|
90
62
|
},
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
63
|
+
"name": "@sillsdev/docu-notion",
|
|
64
|
+
"description": "Download Notion pages as markdown and image files, preserving hierarchy and enabling workflow properties. Works with Docusaurus.",
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"author": {
|
|
67
|
+
"name": "SIL Language Software Development",
|
|
68
|
+
"email": "sillsdev@users.noreply.github.com",
|
|
69
|
+
"url": "https://github.com/sillsdev"
|
|
70
|
+
},
|
|
71
|
+
"keywords": [
|
|
72
|
+
"docusaurus",
|
|
73
|
+
"notion",
|
|
74
|
+
"markdown",
|
|
75
|
+
"documentation"
|
|
76
|
+
],
|
|
77
|
+
"bugs": {
|
|
78
|
+
"url": "https://github.com/sillsdev/docu-notion/issues"
|
|
95
79
|
},
|
|
80
|
+
"homepage": "https://github.com/sillsdev/docu-notion#readme",
|
|
81
|
+
"packageManager": "yarn@3.4.1",
|
|
82
|
+
"main": "./dist/index.js",
|
|
83
|
+
"bin": "dist/index.js",
|
|
84
|
+
"files": [
|
|
85
|
+
"dist/**/*"
|
|
86
|
+
],
|
|
96
87
|
"publishConfig": {
|
|
97
88
|
"access": "public"
|
|
98
89
|
},
|
|
99
90
|
"volta": {
|
|
100
91
|
"node": "18.16.0"
|
|
101
92
|
},
|
|
102
|
-
"version": "0.
|
|
93
|
+
"version": "0.12.0-main.1"
|
|
103
94
|
}
|