-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
{
"name": "@inkdropapp/html2markdown",
"version": "4.0.0",
"description": "Convert HTML to Markdown using remark and rehype",
"type": "module",
"main": "lib/index.esm.js",
"types": "lib/index.d.ts",
"unpkg": "lib/index.umd.js",
"scripts": {
"build": "rollup --bundleConfigAsCjs -c",
"lint": "eslint src __tests__ && tsc --noEmit",
"format": "prettier . -w --loglevel warn",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.js",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/inkdropapp/html2markdown.git"
},
"keywords": [
"remark",
"markdown",
"html"
],
"author": "Takuya Matsuyama <hi@craftz.dog>",
"license": "MIT",
"homepage": "https://github.com/inkdropapp/html2markdown",
"dependencies": {
"mdast-util-gfm": "^3.1.0",
"mdast-util-to-markdown": "^2.1.2",
"rehype-parse": "^9.0.1",
"rehype-remark": "^10.0.0",
"remark-squeeze-links": "^1.0.2",
"unified": "^11.0.5"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/dedent": "^0.7.2",
"@types/jest": "^29.5.14",
"dedent": "^1.5.3",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"remark-stringify": "^11.0.0",
"rollup": "^4.35.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}