-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 2.35 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
{
"name": "next-markdown",
"version": "1.8.0",
"description": "Static pages generated from markdown files for your Next.js website.",
"source": "src/index.ts",
"main": "dist/main.js",
"types": "dist/types.d.ts",
"type": "module",
"files": [
"dist/**/*"
],
"scripts": {
"dev": "parcel watch",
"build": "npm run clear && parcel build",
"clear": "rm -rf .parcel-cache && rm -rf dist/",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "tslint -p tsconfig.json",
"install:examples": "npm --prefix examples/blog i && npm --prefix examples/dynamic-routes i && npm --prefix examples/remote-content i && npm --prefix examples/mdx i && npm --prefix examples/custom-remark-rehype-plugins i && npm --prefix examples/documentation i && npm --prefix examples/personal-blog i && npm --prefix examples/js i",
"prepare": "npm run build",
"prepublishOnly": "npm run format:check && npm test && npm run lint",
"preversion": "npm run format:check && npm test && npm run lint",
"version": "npm run install:examples && git add .",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frouo/next-markdown.git"
},
"keywords": [
"nextjs",
"markdown",
"git",
"generator",
"static",
"pages"
],
"author": "François Rouault <francois.rouault@cocoricostudio.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/frouo/next-markdown/issues"
},
"homepage": "https://github.com/frouo/next-markdown#readme",
"devDependencies": {
"@parcel/packager-ts": "2.4.0",
"@parcel/transformer-typescript-types": "2.4.0",
"@types/github-slugger": "1.3.0",
"@types/jest": "27.4.1",
"@types/node": "17.0.23",
"jest": "27.5.1",
"parcel": "2.4.0",
"prettier": "2.5.1",
"ts-jest": "27.1.4",
"ts-node": "10.7.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.6.3"
},
"dependencies": {
"github-slugger": "1.4.0",
"gray-matter": "4.0.3",
"next-mdx-remote": "4.0.2",
"rehype-remark": "9.1.2",
"rehype-slug": "^5.0.1",
"rehype-stringify": "9.0.3",
"remark-parse": "10.0.1",
"remark-rehype": "10.1.0",
"unified": "10.1.1",
"unist-util-visit": "4.1.0"
}
}