-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
72
73
74
{
"name": "rehype-wrap-sibling",
"version": "1.0.4",
"description": "Rehype plugin to wrap a selected element and its sibling in a container element.",
"author": "James Williams (https://jameswilliams.dev)",
"keywords": [
"rehype",
"plugin",
"rehype-plugin",
"wrap",
"wrapper",
"container",
"sibling",
"next-sibling",
"hast",
"unified"
],
"type": "module",
"main": "./dist/lib/index.js",
"exports": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"ci": "npm run build && npm run lint:check && npm run check:exports && type-coverage && npm run test",
"test": "vitest run",
"test:watch": "vitest",
"lint:check": "npx biome check .",
"lint:write": "npx biome check --write .",
"check:exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"prepublishOnly": "npm run ci",
"changeset:release": "changeset publish",
"static": "node example.js"
},
"files": [
"dist/lib"
],
"homepage": "https://github.com/jamesgeorgewilliams/rehype-wrap-sibling",
"bugs": {
"url": "https://github.com/jamesgeorgewilliams/rehype-wrap-sibling/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jamesgeorgewilliams/rehype-wrap-sibling.git"
},
"dependencies": {
"@types/hast": "^3.0.0",
"hast-util-parse-selector": "^4.0.0",
"hast-util-select": "^6.0.0",
"unified": "^11.0.0",
"unist-util-find-after": "^5.0.0",
"unist-util-find-before": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.11",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"rehype": "^13.0.2",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"type-coverage": "^2.29.7",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreCatch": true,
"ignoreAsAssertion": true,
"strict": true
}
}