-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.26 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.26 KB
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": "vite-plugin-mdx-plus",
"version": "2.1.0",
"description": "A vite plugin to use mdx with more opinionated features. It's plus!",
"keywords": [
"vite-plugin",
"mdx"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Codpoe/vite-plugin-mdx-plus.git"
},
"author": "Codpoe <codpoe.me@gmail.com>",
"packageManager": "pnpm@9.8.0",
"type": "module",
"files": [
"dist",
"style.css"
],
"exports": {
".": "./dist/index.js",
"./style.css": "./style.css"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"dev": "rimraf dist && tsc -w",
"build": "rimraf dist && tsc",
"lint": "eslint src",
"release": "release-it"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"hooks": {
"before:init": [
"pnpm run lint"
],
"after:bump": "pnpm run build"
}
},
"dependencies": {
"@mdx-js/rollup": "^3.0.1",
"@rollup/pluginutils": "^5.1.0",
"@shikijs/rehype": "^1.17.7",
"@shikijs/transformers": "^1.17.7",
"acorn": "^8.12.1",
"acorn-jsx": "^5.3.2",
"defu": "^6.1.4",
"fs-extra": "^11.2.0",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^2.0.3",
"mdast-util-mdx-jsx": "^3.1.3",
"mdast-util-mdxjs-esm": "^2.0.1",
"mdast-util-to-string": "^4.0.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-directive": "^3.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"shiki": "^1.17.7",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"unist-util-visit-children": "^3.0.0",
"upath": "^2.0.1"
},
"devDependencies": {
"@codpoe/eslint-config": "^1.0.2",
"@release-it/conventional-changelog": "^8.0.2",
"@types/fs-extra": "^11.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^20.10.4",
"eslint": "^9.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"rollup": "^4.21.3",
"typescript": "^5.6.2",
"vite": "^5.4.6"
}
}