-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.81 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": "@jsdevtools/next-mdx",
"version": "1.2.0",
"description": "Adds support for MDX with advanced syntax features in Next.js applications",
"keywords": [
"nextjs",
"mdx",
"markdown",
"react",
"jsx",
"documentation"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://jstools.dev/next-mdx",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/next-mdx.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage lib",
"lint": "eslint src test --ext=.ts,.js",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha && npm run lint",
"coverage": "nyc node_modules/mocha/bin/mocha",
"upgrade": "npm-check -u && npm audit fix",
"bump": "bump --tag --push --all",
"release": "npm run upgrade && npm run clean && npm run build && npm test && npm run bump"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@jsdevtools/version-bump-prompt": "^6.0.2",
"@mdx-js/mdx": "^2.0.0-next.7",
"@types/chai": "^4.1.7",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.1",
"@types/vfile": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"mocha": "^8.1.2",
"npm-check": "^5.9.0",
"nyc": "^15.0.0",
"shx": "^0.3.2",
"source-map-support": "^0.5.12",
"typescript": "^4.0.2",
"untag": "^1.0.1"
},
"dependencies": {
"@mdx-js/loader": "^2.0.0-next.8",
"@next/mdx": "^10.0.0",
"globby": "^11.0.1",
"gray-matter": "^4.0.2",
"remark-frontmatter": "^2.0.0",
"utimes": "^4.0.0",
"yaml": "^1.10.0"
}
}