forked from jake-low/remark-sectionize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "@avgvstvs96/remark-sectionize",
"version": "2.1.3",
"description": "Wrap content below each heading in a <section> element",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "github:avgvstvs96/remark-sectionize"
},
"author": "Jake Low <[email protected]>",
"contributors": [
"Bassim Shahidy <[email protected]> (https://github.com/avgvstvs96)",
"github:Dahmon (https://github.com/Dahmon)",
"github:nd0ut (https://github.com/nd0ut)",
"github:shogotsuneto (https://github.com/shogotsuneto)",
"github:CanRau (https://github.com/CanRau)"
],
"license": "MIT",
"private": false,
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "tsup && node test.js | npx tap-spec"
},
"keywords": [
"remark",
"plugin",
"markdown",
"html",
"section"
],
"resolutions": {
"@types/unist": "3.0.2"
},
"dependencies": {
"unist-util-find-after": "^4.0.1",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@types/dedent": "^0.7.2",
"@types/tape": "^5.6.4",
"@types/unist": "^3.0.2",
"biome": "^0.3.3",
"dedent": "^0.7.0",
"remark": "^14.0.2",
"tape": "^5.6.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"unified": "^11.0.5",
"unist-builder": "^3.0.1",
"unist-util-remove-position": "^4.0.2"
}
}