forked from opstrace/next-product-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
139 lines (139 loc) · 3.74 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@zentered/next-product-docs",
"version": "2.0.0",
"description": "React/Next.js Render Remote Content",
"keywords": [
"nextjs",
"documentation"
],
"bugs": {
"url": "https://github.com/zentered/next-product-docs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zentered/next-product-docs.git"
},
"license": "Apache-2.0",
"author": "Opstrace, Inc.",
"contributors": [
"Patrick Heneise (https://github.com/PatrickHeneise)",
"Moritz Sattler (https://github.com/MoSattler)",
"Christian Mejlak (https://github.com/C-Mejlak)",
"Alexander Khvostov (https://github.com/alexanderKhvostov)"
],
"type": "module",
"exports": {
".": "./index.js",
"./serialize": "./serialize.js"
},
"browser": {
"fs": false,
"child_process": false
},
"scripts": {
"build": "rollup -c rollup.config.js",
"coverage": "vitest run --coverage",
"postinstall": "husky install",
"lint": "eslint --fix . --ext .js --ext .jsx --ext md --ext mdx",
"prepare": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"style": "prettier --write \"./**/*.{js,jsx,json}\"",
"test": "vitest run",
"preversion": "npm run build",
"watch": "watch 'npm run build' ./src"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,jsx,md,mdx}": [
"prettier --write"
],
"*.{js,jsx,md,mdx}": [
"eslint --cache --fix"
]
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@mdx-js/mdx": "^2.3.0",
"@next/mdx": "^13.4.4",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"marked": "^5.0.4",
"mdast": "^3.0.0",
"next-mdx-remote": "^4.4.1",
"prism-react-renderer": "2.0.4",
"react-click-away-listener": "2.2.3",
"react-copy-to-clipboard": "^5.1.0",
"react-instantsearch-dom": "^6.40.0",
"react-markdown": "^8.0.7",
"react-scroll": "^1.8.9",
"rehype-autolink-headings": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"rehype-slug": "^5.1.0",
"remark-comment": "^1.0.0",
"remark-custom-heading-id": "^1.0.1",
"remark-external-links": "^9.0.1",
"remark-gfm": "^3.0.1",
"remark-inline-links": "^6.0.1",
"remark-parse": "^10.0.2",
"strip-indent": "^4.0.0",
"unist-util-visit": "^4.1.2",
"vfile": "^5.3.7"
},
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@mdx-js/runtime": "^1.6.22",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^4.0.0",
"esbuild": "^0.17.19",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"mdx-observable": "^0.2.0",
"next": "^13.4.4",
"nock": "^13.3.1",
"pinst": "^3.0.0",
"pkg-dir": "^7.0.0",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "^3.23.0",
"vitest": "^0.31.2",
"watch": "^1.0.2",
"whatwg-fetch": "^3.6.2"
},
"peerDependencies": {
"next": "^12||^13",
"react": ">=16",
"react-dom": ">=16"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"estree-util-build-jsx": "2.2.2"
}
}