-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.66 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
{
"name": "react-markdown-toc",
"version": "1.4.0",
"type": "module",
"description": "react markdown toc",
"keywords": [
"react",
"toc",
"markdown",
"markdown toc",
"react markdown toc"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./client": "./dist/client.js",
"./server": "./dist/server.js"
},
"author": "zhangyu1818 <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/zhangyu1818/react-markdown-toc.git"
},
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"build:lib": "tsc -p tsconfig.build.json",
"lint": "next lint"
},
"dependencies": {
"@types/mdast": "^4.0.3",
"lodash.throttle": "^4.1.1",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-toc": "^7.0.0"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-icons": "^1.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.1",
"next": "14.2.1",
"postcss": "^8",
"prettier": "^3.2.5",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"rehype-slug": "^6.0.0",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}