-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "html-docx-mini",
"version": "1.0.0",
"description": "Lightweight HTML to DOCX converter for browsers and Node.js with zero external dependencies",
"type": "module",
"main": "dist/html-docx-mini.cjs.js",
"module": "dist/html-docx-mini.esm.js",
"browser": "dist/html-docx-mini.min.js",
"exports": {
".": {
"import": "./dist/html-docx-mini.esm.js",
"require": "./dist/html-docx-mini.cjs.js",
"browser": "./dist/html-docx-mini.min.js"
}
},
"scripts": {
"prebuild": "node scripts/generate-version.js",
"build": "rollup -c",
"dev": "node scripts/generate-version.js && rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"version:generate": "node scripts/generate-version.js"
},
"keywords": [
"html",
"docx",
"word",
"export",
"converter",
"document",
"html-to-docx",
"html2docx",
"html-docx-mini",
"html-to-word"
],
"author": "deftio",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/deftio/html-to-docx.git"
},
"bugs": {
"url": "https://github.com/deftio/html-to-docx/issues"
},
"homepage": "https://github.com/deftio/html-to-docx#readme",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^30.0.5",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"jszip": "^3.10.1",
"rollup": "^4.46.2"
},
"dependencies": {
"docx": "^9.5.1",
"file-saver": "^2.0.5"
}
}