-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.99 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "hackmd-to-html-cli",
"version": "2.0.0",
"description": "A node.js CLI tool for converting HackMD markdown to HTML.",
"keywords": [
"hackmd",
"markdown",
"html",
"cli",
"converter"
],
"homepage": "https://github.com/ksw2000/hackmd-to-html-cli.git",
"repository": {
"type": "git",
"url": "https://github.com/ksw2000/hackmd-to-html-cli.git"
},
"bugs": {
"url": "https://github.com/ksw2000/hackmd-to-html-cli/issues"
},
"bin": {
"hmd2html": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:node": "npx tsc",
"build:web": "npx webpack",
"build": "npm run build:node && npm run build:web",
"example": "npx ts-node src/cli.ts -i ./example/*",
"example_dark": "npx ts-node src/cli.ts -i ./example/index.md -o output/index.dark.html --dark",
"test": "npx jest",
"lint": "npx eslint src/**/*.ts --fix"
},
"author": "Kashiwa",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"deflate-js": "^0.2.3",
"glob": "^11.0.0",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-mathjax3": "4.3.2",
"markdown-it-ruby": "^1.1.1",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-table-of-contents": "^0.8.0",
"papaparse": "^5.4.1",
"yaml": "^2.2.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/deflate-js": "^0.2.2",
"@types/markdown-it-emoji": "^3.0.1",
"@types/node": "^22.10.1",
"@types/papaparse": "^5.3.15",
"globals": "^15.12.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}