-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.58 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@kazumatu981/markdown-it-pdf",
"version": "0.0.3",
"description": "Markdown Renderer for PDF (compatible with `markdown-it`)",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"bin": {
"markdown-it-pdf": "cli.js"
},
"scripts": {
"transpile:typescript": "tsc --project tsconfig.json",
"transpile-watch:typescript": "tsc --watch --project tsconfig.json",
"lint:eslint": "eslint -c eslint.config.mjs src/**/*.ts",
"test": "jest",
"test-watch": "jest --watch",
"test:unit": "jest --config=unit.jest.config.js",
"test:render": "jest -u --runInBand --config=render.jest.config.js",
"test:update-snap": "jest -u",
"test:detect-leaks": "jest --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/yargs": "^17.0.32",
"eslint": "latest",
"eslint-plugin-jsdoc": "^48.2.12",
"globals": "^15.4.0",
"jest": "^29.7.0",
"markdown-it-sup": "^2.0.0",
"mock-fs": "^5.2.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
},
"dependencies": {
"@types/markdown-it": "^14.0.1",
"chalk": "^4.1.2",
"handlebars": "^4.7.8",
"markdown-it": "^14.1.0",
"puppeteer": "^22.7.1",
"yargs": "^17.7.2"
}
}