-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
50 lines (50 loc) · 1.08 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
{
"name": "@markdoc/next.js",
"version": "0.3.7",
"author": "Stripe, Inc.",
"description": "Markdoc plugin for Next.js",
"license": "MIT",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": "./src/index.js",
"./*": "./src/*.js"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@markdoc/markdoc": "*",
"@types/jest": "^27.4.1",
"enhanced-resolve": "^5.10.0",
"jest": "^27.5.1",
"next": "*",
"react": "*",
"ts-jest": "^27.1.3",
"typescript": "4.6.2"
},
"peerDependencies": {
"@markdoc/markdoc": "*",
"next": "*",
"react": "*"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markdoc/next.js.git"
},
"bugs": {
"url": "https://github.com/markdoc/next.js/issues"
},
"homepage": "https://markdoc.dev/docs/nextjs",
"jest": {
"preset": "ts-jest/presets/js-with-babel"
}
}