-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "remark-card",
"version": "0.6.0",
"description": "A remark plugin to parse card component(s)",
"type": "module",
"exports": "./dist/index.js",
"author": "brklntmhwk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brklntmhwk/remark-card"
},
"files": [
"dist/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"remark",
"remark-plugin",
"card",
"cardgrid",
"markdown",
"html"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "bunx biome format ./src ./test",
"format:fix": "bunx biome format --write ./src ./test",
"lint": "bunx biome lint ./src ./test",
"lint:fix": "bunx biome lint --write ./src ./test",
"check": "bunx biome check ./src ./test",
"check:fix": "bunx biome check --write ./src ./test",
"test-type": "type-coverage"
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
},
"dependencies": {
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/mdast": "^4.0.4",
"@types/unist": "^3.0.3",
"mdast-util-directive": "^3.0.0",
"rehype-stringify": "^10.0.1",
"remark-directive": "^3.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"type-coverage": "^2.29.7",
"typescript": "^5.6.3"
}
}