forked from hashicorp/next-mdx-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.46 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
{
"name": "next-mdx-remote",
"description": "utilities for loading mdx from any remote source as data, rather than as a local import",
"version": "3.0.8",
"author": "Jeff Escalante",
"bugs": {
"url": "https://github.com/hashicorp/next-mdx-remote/issues"
},
"main": "index.js",
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"esbuild": "^0.12.9",
"pkg-dir": "^5.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@hashicorp/remark-plugins": "^3.0.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/babel__preset-env": "^7.9.1",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^26.0.19",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.14.16",
"@types/puppeteer": "^5.4.2",
"@types/react": "^17.0.4",
"@types/rmfr": "^2.0.0",
"@types/serve-handler": "^6.1.0",
"cross-spawn": "^7.0.3",
"gray-matter": "^4.0.2",
"husky": "^4.3.6",
"jest": "^26.6.3",
"next": "10.2.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"puppeteer": "^5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"release": "^6.3.0",
"rmfr": "^2.0.0",
"rollup": "^2.45.2",
"serve-handler": "^6.1.3",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"unist-util-remove": "^3.0.0"
},
"homepage": "https://github.com/hashicorp/next-mdx-remote#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testPathIgnorePatterns": [
"fixtures"
],
"verbose": true
},
"keywords": [
"markdown",
"mdx",
"next",
"next.js"
],
"license": "MPL-2.0",
"peerDependencies": {
"react": ">=16.x <=17.x",
"react-dom": ">=16.x <=17.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashicorp/next-mdx-remote.git"
},
"scripts": {
"build": "rm -rf ./dist && rollup -c rollup.config.js",
"lint": "prettier --write \"./**/*.{js,jsx,json}\"",
"release:major": "release major && npm publish",
"release:minor": "release minor && npm publish",
"release:patch": "release patch && npm publish",
"prepublishOnly": "npm run build",
"test": "npm run build && jest"
},
"sideEffects": false,
"types": "index.d.ts"
}