forked from VolodymyrBaydalka/docxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 KB
/
package.json
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
{
"name": "docx-preview-sync",
"version": "0.4.20",
"license": "Apache-2.0",
"keywords": [
"word",
"docx"
],
"author": {
"name": "millet0328"
},
"maintainers": [
"millet0328"
],
"repository": {
"type": "git",
"url": "git+https://github.com/millet0328/docx-preview-sync.git"
},
"dependencies": {
"jszip": ">=3.0.0",
"konva": "^9.3.1",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@rollup/plugin-run": "^3.0.2",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/lodash-es": "^4.17.12",
"diff": "^5.0.0",
"jasmine-core": "^5.1.0",
"karma": "^6.3.9",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.0.0",
"rollup": "^4.9.5",
"rollup-plugin-node-externals": "^6.1.2",
"tslib": "^2.4.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"build-prod": "rollup --config rollup.config.mjs --environment BUILD:production",
"watch": "rollup --config rollup.config.mjs --watch",
"e2e": "karma start karma.conf.cjs --single-run",
"e2e-watch": "karma start karma.conf.cjs"
},
"files": [
"dist"
],
"type": "module",
"browser": "dist/docx-preview.min.js",
"exports": {
".": {
"types": "./dist/docx-preview.d.ts",
"import": "./dist/docx-preview.esm.min.js"
}
},
"module": "dist/docx-preview.esm.min.js",
"types": "dist/docx-preview.d.ts"
}