@openeditor/exporters 0.0.2 → 0.0.4
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/README.md +1 -1
- package/package.json +7 -12
package/README.md
CHANGED
|
@@ -10,4 +10,4 @@ Pure import/export helpers for OpenEditor documents.
|
|
|
10
10
|
## Internal notes
|
|
11
11
|
|
|
12
12
|
- Exporters remain side-effect free and renderer-independent.
|
|
13
|
-
- Keep format transforms here rather than in `@openeditor/
|
|
13
|
+
- Keep format transforms here rather than in `@openeditor/react`, `@openeditor/ui`, or `@openeditor/native`.
|
package/package.json
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openeditor/exporters",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/EasyLink-HQ/openeditor.git",
|
|
9
|
+
"directory": "packages/exporters"
|
|
10
|
+
},
|
|
6
11
|
"main": "./dist/index.js",
|
|
7
12
|
"types": "./dist/index.d.ts",
|
|
8
13
|
"publishConfig": {
|
|
@@ -18,17 +23,7 @@
|
|
|
18
23
|
},
|
|
19
24
|
"./package.json": "./package.json"
|
|
20
25
|
},
|
|
21
|
-
"scripts": {
|
|
22
|
-
"build": "tsup --config tsup.config.ts",
|
|
23
|
-
"test": "pnpm run build && node --test test/*.test.mjs",
|
|
24
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
25
|
-
"clean": "rm -rf dist"
|
|
26
|
-
},
|
|
27
26
|
"dependencies": {
|
|
28
|
-
"@openeditor/core": "
|
|
29
|
-
},
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"tsup": "^8.5.1",
|
|
32
|
-
"typescript": "6.0.3"
|
|
27
|
+
"@openeditor/core": "0.0.4"
|
|
33
28
|
}
|
|
34
29
|
}
|