-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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
{
"name": "mdast-util-extended-table",
"version": "2.0.2",
"description": "mdast extension for table allowing colspan/rowspan",
"author": "Wataru Watanabe",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wataru-chocola/remark-extended-table.git"
},
"bugs": {
"url": "https://github.com/wataru-chocola/remark-extended-table/issues"
},
"homepage": "https://github.com/wataru-chocola/remark-extended-table/tree/main/packages/mdast-util-extended-table",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"files": [
"dist/*.js",
"dist/*.d.ts",
"!dist/*.test.js",
"!dist/*.test.d.ts"
],
"keywords": [
"mdast",
"mdast-util",
"markdown"
],
"dependencies": {
"@types/hast": "^3.0.1",
"@types/mdast": "^4.0.1",
"@types/unist": "^3.0.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-hast": "^13.0.2",
"mdast-util-to-markdown": "^2.1.0",
"micromark-extension-extended-table": "workspace:^",
"unist-builder": "^4.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"hast-util-to-html": "9.0.4",
"mdast-util-gfm-table": "2.0.0",
"micromark-extension-gfm-table": "2.1.0",
"unist-util-inspect": "8.1.0"
},
"peerDependencies": {
"mdast-util-gfm-table": "^2.0.0"
},
"scripts": {
"format": "prettier --write \"./**/*.{ts,json}\"",
"lint": "eslint './**/*.ts'",
"lint-fix": "eslint --fix './**/*.ts' && prettier --write ./**/*.{ts,json}",
"test": "vitest run --passWithNoTests --root dist",
"test:dev": "vitest --passWithNoTests .ts",
"build": "tsc --build --verbose",
"rebuild": "pnpm run clean && pnpm run build",
"prepublish": "pnpm run rebuild",
"clean": "rimraf dist lib/*.js lib/*.d.ts tsconfig.tsbuildinfo"
}
}