simple-super-doc 0.11.3 → 0.11.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/package.json +16 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simple-super-doc",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.4",
|
|
4
4
|
"description": "Faithful DOCX renderer with exposed typed IR for building document editors",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,16 +13,28 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"sideEffects": false,
|
|
16
|
-
"files": [
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
17
19
|
"scripts": {
|
|
18
20
|
"build": "tsup src/index.ts --format esm --dts",
|
|
19
21
|
"build:demo": "tsup src/index.ts --format iife --global-name SimpleDoc --outDir demo",
|
|
20
22
|
"typecheck": "tsc --noEmit",
|
|
21
23
|
"test": "vitest run",
|
|
22
24
|
"test:watch": "vitest",
|
|
23
|
-
"prepublishOnly": "npm run build && npm run typecheck && npm test"
|
|
25
|
+
"prepublishOnly": "npm run build && npm run typecheck && npm test",
|
|
26
|
+
"postversion": "git push origin HEAD --follow-tags"
|
|
24
27
|
},
|
|
25
|
-
"keywords": [
|
|
28
|
+
"keywords": [
|
|
29
|
+
"docx",
|
|
30
|
+
"word",
|
|
31
|
+
"renderer",
|
|
32
|
+
"parser",
|
|
33
|
+
"document",
|
|
34
|
+
"ir",
|
|
35
|
+
"ooxml",
|
|
36
|
+
"html"
|
|
37
|
+
],
|
|
26
38
|
"license": "MIT",
|
|
27
39
|
"author": "Rafael-T-Santos <dev.rafaelsantos@outlook.com>",
|
|
28
40
|
"repository": {
|