generated from jcamp-code/starter-vitepress-theme
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
102 lines (102 loc) · 3.02 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
100
101
102
{
"name": "@jcamp/vitepress-blog-theme",
"type": "module",
"version": "0.3.0",
"packageManager": "pnpm@8.2.0",
"description": "VitePress easy to use blog theme",
"author": "John Campion (https://github.com/JohnCampionJr/)",
"license": "MIT",
"homepage": "https://github.com/jcamp-code/vitepress-blog-theme",
"repository": {
"type": "git",
"url": "git+https://github.com/jcamp-code/vitepress-blog-theme.git"
},
"bugs": {
"url": "https://github.com/jcamp-code/vitepress-blog-theme/issues"
},
"keywords": [
"vite",
"vue",
"vitepress",
"theme",
"blog"
],
"exports": {
".": "./src/theme/index.ts",
"./config": "./dist/config/index.js",
"./package.json": "./package.json"
},
"main": "src/theme/index.ts",
"files": [
"src",
"dist",
"config.d.ts"
],
"scripts": {
"prepare": "npx simple-git-hooks && pnpm build-config",
"lint": "prettier --check --write --parser typescript \"{__tests__,docs,src,types}/**/*.ts\"",
"lint:fail": "prettier --check --parser typescript \"{__tests__,docs,src,types}/**/*.ts\"",
"type": "tsc --noEmit",
"build-config": "tsc -p ./src/config && cp ./dist/config/index.d.ts ./config.d.ts",
"test": "pnpm lint && pnpm type",
"dev": "vitepress dev docs",
"build": "pnpm build-config && vitepress build docs",
"serve": "pnpm build && vitepress serve docs",
"release": "changelogen --release --push && pnpm publish --access public",
"release:minor": "changelogen --release --minor --push && pnpm publish --access public",
"release:major": "changelogen --release --major --push && pnpm publish --access public",
"release:patch": "changelogen --release --patch --push && pnpm publish --access public"
},
"peerDependencies": {
"vitepress": "^1.0.0-alpha.74"
},
"dependencies": {
"@iconify-json/bx": "^1.1.6",
"@iconify-json/carbon": "^1.1.16",
"@iconify-json/fluent-emoji": "^1.1.12",
"@iconify-json/heroicons-outline": "^1.1.6",
"@iconify-json/logos": "^1.1.24",
"@jcamp/tailwindcss-plugin-icons": "^0.5.0",
"@tailwindcss/typography": "^0.5.4",
"autoprefixer": "^10.4.13",
"date-fns": "^2.29.3",
"feed": "^4.2.2",
"postcss": "^8.4.20",
"tailwindcss": "^3.3.1",
"vitepress": "1.0.0-alpha.74",
"vue": "^3.2.47"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@jcamp/eslint-config": "0.6.1",
"@types/node": "^18.15.13",
"changelogen": "^0.5.3",
"commitlint-config-unjs": "^1.0.1",
"eslint": "^8.38.0",
"gray-matter": "^4.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vitepress": "1.0.0-alpha.74",
"vitest": "^0.30.1",
"vue": "^3.2.47"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
],
"allowedVersions": {
"typescript": "5"
}
}
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}