-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "tabletomd",
"version": "1.0.2",
"description": "Tabletomd attempts to convert local or remote HTML tables into Markdown Table with a very low footprint.",
"homepage": "https://github.com/yyz945947732/tabletomd",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"example": "node example/index",
"test": "vitest",
"lint": "biome check --apply-unsafe ./src && biome format --write ./src",
"build": "tsup --config tsup.config.ts",
"test:cov": "vitest run --coverage"
},
"type": "module",
"author": "yyz945947732 <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/yyz945947732/tabletomd/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yyz945947732/tabletomd.git"
},
"devDependencies": {
"@biomejs/biome": "^1.1.2",
"@vitest/coverage-istanbul": "^0.34.4",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"dependencies": {
"mdtable": "^0.3.1",
"node-fetch": "^3.3.2",
"tabletojson": "^3.0.0"
},
"keywords": [
"table2md",
"table2markdown",
"tabletomarkdown",
"tablemd",
"tablemarkdown",
"markdown",
"table",
"convert"
]
}