-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 848 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
33
34
{
"name": "@minar-kotonoha/word2html",
"version": "1.0.0",
"scripts": {
"build": "esbuild --bundle cli.js --platform=node --target=node18 --outfile=out.js --minify",
"package": "npm run build && pkg out.js --config build.json --output dist/word2html.exe --compress GZip && del out.js"
},
"dependencies": {
"execa": "^5",
"fs-extra": "^10.1.0",
"jsdom": "^6.0.0",
"klaw": "^4.0.1"
},
"devDependencies": {
"@types/klaw": "^3.0.3",
"@types/node": "^18.11.9",
"del-cli": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chengzhuo5/word2html.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "index.js",
"files": [
"docto_64.exe",
"handleHtml.js",
"index.js",
"word2html.js"
]
}