forked from antfu/vite-plugin-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vite-plugin-md",
"version": "0.18.1",
"packageManager": "[email protected]",
"description": "Markdown for Vite",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/vite-plugin-md",
"repository": {
"type": "git",
"url": "https://github.com/antfu/vite-plugin-md"
},
"bugs": "https://github.com/antfu/vite-plugin-md/issues",
"keywords": [
"vite",
"vite-plugin",
"markdown-it"
],
"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": {
"build": "tsup src/index.ts --dts --format cjs,esm --clean",
"watch": "tsup src/index.ts --dts --format cjs,esm --watch",
"dev": "npm run build -- --watch",
"example:build": "cp README.md example/README.md && npm -C example run build",
"example:dev": "cp README.md example/README.md && npm -C example run dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run build",
"release": "bumpp",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:update": "vitest -u",
"test:component": "npx cypress open-ct -p 4000"
},
"peerDependencies": {
"vite": "^2.9.9"
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"@types/markdown-it": "^12.2.3",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/runtime-core": "^3.2.37",
"@vueuse/core": "^8.7.5",
"gray-matter": "^4.0.3",
"source-map-js": "^1.0.2",
"ts-morph": "^15.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@antfu/ni": "^0.16.2",
"@antfu/utils": "^0.5.2",
"@types/node": "^18.0.0",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vitest/ui": "^0.15.2",
"@vue/runtime-core": "^3.2.37",
"@vue/test-utils": "^2.0.1",
"@vueuse/core": "^8.7.3",
"@yankeeinlondon/happy-wrapper": "^2.3.0",
"add": "^2.0.6",
"bumpp": "^8.2.1",
"c8": "^7.11.3",
"callsites": "^3.1.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"fp-ts": "^2.12.1",
"happy-dom": "^5.3.1",
"markdown-it": "^13.0.1",
"npm-run-all": "^4.1.5",
"pathe": "^0.3.0",
"prismjs": "^1.28.0",
"rollup": "^2.75.7",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"unocss": "^0.39.3",
"vite": "^2.9.12",
"vite-plugin-pages": "^0.24.2",
"vite-plugin-vue-layouts": "^0.6.0",
"vitest": "^0.15.2",
"vue": "^3.2.37",
"vue-router": "^4.0.16",
}
}