-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "vite-plugin-md-data",
"version": "1.3.3",
"description": "Access the markdown data",
"author": "Ryosuke Kogure <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryo-gk/vite-plugin-md-data"
},
"keywords": [
"vite",
"vite-plugin",
"markdown"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm",
"dev": "vite",
"format": "prettier src/ --check --write",
"preview": "vite preview",
"release": "node script/release.js",
"test": "vitest"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"@types/node": "^17.0.40",
"@types/prettier": "^2.7.1",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"prettier": "^2.8.0",
"vite": "^3.0.4"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@vitejs/plugin-vue": "^2.3.3",
"execa": "^5.1.1",
"tsup": "^6.1.0",
"typescript": "^4.7.3",
"vitest": "^0.25.3",
"vue": "^3.2.36"
}
}