forked from priority3/vite-plugin-react-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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
{
"name": "@pity/vite-plugin-react-markdown",
"version": "0.1.1",
"description": "",
"author": "priority",
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npm run build -- --watch",
"example:dev": "pnpm -C example run dev",
"example:build": "pnpm -C example run build",
"test": "vitest",
"build": "tsup",
"release": "bumpp --commit --tag --push && npm publish --access public",
"lint": "eslint . --cache",
"lint:fix": "pnpm run lint --fix"
},
"dependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@mdit-vue/plugin-component": "^0.11.1",
"@rollup/pluginutils": "^4.2.1",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"front-matter": "^4.0.2",
"fs-extra": "^10.1.0",
"htmlparser2": "^8.0.1",
"markdown-it": "^13.0.1",
"picocolors": "^1.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@pity/eslint-config-react": "^0.1.9",
"@pity/eslint-config-ts": "^0.1.9",
"@types/babel__core": "^7.1.19",
"@types/fs-extra": "^9.0.13",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.7.23",
"bumpp": "^8.2.1",
"eslint": "^8.24.0",
"eslint-define-config": "^1.8.0",
"rimraf": "^3.0.2",
"tsup": "^6.2.3",
"typescript": "^4.8.4",
"vite": "^3.1.4"
}
}