-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "parcel-transformer-mdx",
"version": "0.4.2",
"license": "LGPL-3.0-or-later",
"author": "shiy2008@gmail.com",
"description": "Unofficial MDX 3 transformer plugin for Parcel 2",
"keywords": [
"parcel",
"bundler",
"plugin",
"markdown",
"jsx",
"mdx",
"transformer"
],
"homepage": "https://github.com/EasyWebApp/Parcel-transformer-MDX#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/Parcel-transformer-MDX.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/Parcel-transformer-MDX/issues"
},
"type": "module",
"main": "index.js",
"engines": {
"parcel": "^2"
},
"dependencies": {
"@mapbox/rehype-prism": "^0.9.0",
"@mdx-js/mdx": "^3",
"@parcel/plugin": "^2",
"@remark-embedder/core": "^3.0.3",
"@remark-embedder/transformer-oembed": "^3.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^4.0.0"
},
"devDependencies": {
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"types-tsconfig": "^2.1.1",
"typescript": "^5.5.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,js}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged && tsc -p jsconfig.json --noEmit"
}
}