Skip to content

Commit 7292509

Browse files
The unscoped NPM package is now just a wrapper around the @jsdevtools scoped package
1 parent eee7092 commit 7292509

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

dist/index.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import toc from "@jsdevtools/rehype-toc";
2+
export * from "@jsdevtools/rehype-toc";
3+
export default toc;

dist/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"use strict";
2+
module.exports = require("@jsdevtools/rehype-toc");

dist/package.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "rehype-toc",
3+
"version": "X.X.X",
4+
"description": "A rehype plugin that adds a table of contents (TOC) to the page",
5+
"keywords": [
6+
"unified",
7+
"rehype",
8+
"plugin",
9+
"rehype-plugin",
10+
"table-of-contents",
11+
"toc",
12+
"html"
13+
],
14+
"author": {
15+
"name": "James Messinger",
16+
"url": "https://jamesmessinger.com"
17+
},
18+
"license": "MIT",
19+
"homepage": "https://jstools.dev/rehype-toc",
20+
"repository": {
21+
"type": "git",
22+
"url": "https://github.com/JS-DevTools/rehype-toc.git"
23+
},
24+
"main": "index.js",
25+
"types": "index.d.ts",
26+
"files": [
27+
"index.js",
28+
"index.d.ts"
29+
],
30+
"engines": {
31+
"node": ">=10"
32+
},
33+
"dependencies": {
34+
"@jsdevtools/rehype-toc": "X.X.X"
35+
}
36+
}

0 commit comments

Comments
 (0)