-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.27 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.27 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@oxfordabstracts/html-to-docx",
"version": "2.3.0",
"description": "HTML to DOCX converter",
"keywords": [
"html",
"docx",
"html-to-docx",
"html to docx",
"office",
"word"
],
"main": "dist/index-cjs.js",
"types": "dist/index-cjs.d.ts",
"bin": {
"html-to-docx": "bin/html-to-docx.mjs"
},
"scripts": {
"start": "# ⚠️ Run `just start` instead",
"test": "# ⚠️ Run `just test` instead"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OxfordAbstracts/html-to-docx.git"
},
"contributors": [
"Adrian Sieber <html-to-docx@ad-si.com>",
"charuthaB <charutha.bhaskar@synapsica.com>",
"hanagejet",
"kurukururuu <apriansyah.fajar94@gmail.com>",
"erenard",
"KeithGillette",
"juralio-james",
"nicolasiscoding <nicolascoding@gmail.com>",
"zedtux <zedtux@zedroot.org>",
"hlerebours",
"hakjeri",
"tasola"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/OxfordAbstracts/html-to-docx/issues"
},
"homepage": "https://github.com/OxfordAbstracts/html-to-docx#readme",
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/color-name": "^2.0.0",
"@types/image-size": "^0.8.0",
"@types/lodash": "^4.17.20",
"@types/mime-types": "^3.0.1",
"@types/virtual-dom": "^2.1.4",
"canvas": "^3.2.0",
"dprint": "^0.50.2",
"eslint-config-javascript": "^3.0.0",
"globals": "^16.4.0",
"lint-staged": "^16.2.6",
"standard-version": "^9.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.1"
},
"dependencies": {
"@oozcitak/dom": "2.0.1",
"@oozcitak/util": "9.0.4",
"color-name": "^2.0.2",
"file-type": "^21.0.0",
"html-entities": "^2.6.0",
"html-to-vdom": "^0.7.0",
"image-size": "^2.0.2",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"mime-types": "^3.0.1",
"virtual-dom": "^2.1.1",
"xmlbuilder2": "^4.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"just lint"
]
},
"resolutions": {
"@oozcitak/util": "8.3.4",
"@oozcitak/dom": "1.15.6"
},
"overrides": {
"@oozcitak/util": "9.0.4",
"@oozcitak/dom": "2.0.1",
"uri-js": "npm:uri-js-replace"
}
}