-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.31 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
{
"name": "@chunge16/vitepress-blogs-theme",
"type": "module",
"description": "VitePress easy to use blog theme",
"version": "0.2.4",
"main": "src/theme/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "changelogen --release --push && pnpm publish --access public --no-git-checks",
"release:minor": "changelogen --release --minor --push && pnpm publish --access public --no-git-checks",
"release:major": "changelogen --release --major --push && pnpm publish --access public --no-git-checks",
"release:patch": "changelogen --release --patch --push && pnpm publish --access public --no-git-checks",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"commit": "git add -A && czg",
"lint:eslint": "eslint . --ext .ts,.js,.vue --fix",
"prepare": "husky install"
},
"author": "chunge16 (https://github.com/chunge16)",
"license": "MIT",
"homepage": "https://chunge16.github.io/vitepress-blogs-theme/",
"repository": {
"type": "git",
"url": "git+https://github.com/chunge16/vitepress-blogs-theme.git"
},
"keywords": [
"vite",
"vue",
"vitepress",
"theme",
"blog"
],
"exports": {
".": "./src/theme/index.js",
"./config": "./src/config/index.js",
"./package.json": "./package.json"
},
"files": [
"src"
],
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"changelogen": "^0.5.4",
"cz-git": "^1.7.1",
"eslint": "^8.55.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.0",
"lint-staged": "^15.1.0"
},
"peerDependencies": {
"vitepress": "^1.0.0-rc.31"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"dependencies": {
"@giscus/vue": "^2.3.0",
"@iconify-json/carbon": "^1.1.23",
"@iconify-json/logos": "^1.1.40",
"@jcamp/tailwindcss-plugin-icons": "^0.6.2",
"autoprefixer": "^10.4.16",
"date-fns": "^2.30.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.5",
"vitepress": "^1.1.4",
"vue": "^3.3.9"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.{cjs,js,ts,vue}": [
"npm run lint:eslint"
]
}
}