forked from freeall/docx-to-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 863 Bytes
/
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
{
"name": "docx-to-pdf-axios",
"version": "1.1.4",
"description": "Convert docx files to pdf using https://tools.pdf24.org. This fork uses axios so it is compatible with both the browser and node.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "Wilson Foo Yu Kang <[email protected]>",
"license": "(NPOSL-3.0 OR UNLICENSED)",
"repository": "git+https://github.com/customautosys/docx-to-pdf-axios.git",
"bugs": {
"url": "https://github.com/customautosys/docx-to-pdf-axios/issues"
},
"homepage": "https://github.com/customautosys/docx-to-pdf-axios#readme",
"keywords": [
"docx",
"pdf",
"axios",
"pdf24"
],
"devDependencies": {
"@types/node": "^18.7.18",
"typescript": "^4.8.3"
},
"dependencies": {
"axios": "^0.27.2",
"browser-or-node": "^2.0.0",
"form-data": "^4.0.0"
}
}