-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "md2docx",
"version": "1.3.1",
"description": "Professional Markdown to DOCX/PDF/HTML converter",
"type": "module",
"scripts": {
"dev": "bun run src/dev-server.js",
"build": "bun run build.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "bunx bddgen && xvfb-run bunx playwright test",
"test:headed": "bunx bddgen && bunx playwright test --headed",
"test:ui": "bunx bddgen && bunx playwright test --ui",
"test:update-snapshots": "bunx bddgen && xvfb-run bunx playwright test --update-snapshots"
},
"devDependencies": {
"@playwright/test": "1.56.1",
"cheerio": "^1.2.0",
"eslint": "^9.39.2",
"fast-xml-parser": "^5.3.4",
"globals": "^17.3.0",
"jszip": "^3.10.1",
"mammoth": "^1.11.0",
"pdf-parse": "^2.4.5",
"playwright-bdd": "^8.4.2",
"prettier": "^3.8.1"
},
"keywords": [
"markdown",
"docx",
"pdf",
"converter",
"document"
],
"author": "KYOTU Technology",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kyotu-technology/md2docx.git"
},
"homepage": "https://kyotu-technology.github.io/md2docx/"
}