-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 871 Bytes
/
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
{
"name": "vitepress-blog-util",
"version": "0.1.4",
"description": "The utility for creating blog by vitepress",
"keywords": [
"vitepress", "blog"
],
"homepage": "https://github.com/ryo-gk/vitepress-blog-util#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ryo-gk/vitepress-blog-util.git"
},
"license": "MIT",
"author": "ryo-gk",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"build:lib": "tsc -p ."
},
"exports": {
".": "./dist/index.js",
"./scripts": "./dist/scripts/post.js"
},
"dependencies": {
"vitepress": "^0.16.1",
"typescript": "^4.4.2"
},
"devDependencies": {
"@types/node": "^16.7.13",
"fs-extra": "^10.0.0",
"gray-matter": "^4.0.3"
}
}