-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 3.68 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "vitepress-theme-mild",
"type": "module",
"version": "0.8.3",
"description": "A VitePress theme with rich capabilities.",
"author": {
"name": "Hacxy",
"email": "hacxy.js@outlook.com"
},
"license": "MIT",
"homepage": "https://github.com/hacxy/vitepress-theme-mild",
"bugs": {
"url": "https://github.com/hacxy/vitepress-theme-mild/issues"
},
"keywords": [
"vitepress",
"vitepress-theme"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.ts"
},
"./config": {
"types": "./config/index.d.ts",
"default": "./config/index.js"
}
},
"module": "./index.ts",
"types": "./types/index.d.ts",
"files": [
"config",
"index.ts",
"src",
"types"
],
"scripts": {
"dev": "tsup --watch",
"docs:dev": "pnpm -F docs run dev",
"cli:dev": "pnpm -F create-mild-theme run dev",
"build": "tsup",
"docs:build": "pnpm build && pnpm -F docs run build",
"cli:build": "pnpm -F create-mild-theme run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "eslint --fix",
"theme:release": "node scripts/release.js",
"cli:release": "pnpm -F create-mild-theme run release",
"release": "pnpm theme:release && pnpm cli:release",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest",
"test:e2e": "pnpm test:e2e-dev && pnpm test:e2e-build",
"test:e2e:site:dev": "pnpm -F=tests-e2e site:dev",
"test:e2e:site:build": "pnpm -F=tests-e2e site:build",
"test:e2e:site:preview": "pnpm -F=tests-e2e site:preview",
"test:e2e-dev": "pnpm -F=tests-e2e test",
"test:e2e-dev:watch": "pnpm -F=tests-e2e watch",
"test:e2e-build": "VITE_TEST_BUILD=1 pnpm test:e2e-dev",
"test:e2e-build:watch": "VITE_TEST_BUILD=1 pnpm test:e2e-dev:watch",
"prepare": "simple-git-hooks",
"commit": "git-cz"
},
"dependencies": {
"@css-render/vue3-ssr": "^0.15.14",
"@giscus/vue": "^3.1.1",
"@iconify/vue": "^4.3.0",
"@nanostores/vue": "^0.11.0",
"@shikijs/vitepress-twoslash": "^1.24.3",
"@vueuse/core": "^12.0.0",
"@vueuse/motion": "^2.2.6",
"directory-tree": "^3.5.2",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"markdown-it-task-checkbox": "^1.0.6",
"naive-ui": "^2.40.4",
"nanostores": "^0.11.3",
"nprogress": "^0.2.0",
"reading-time-estimator": "^1.11.0",
"sass": "^1.78.0",
"simple-git": "^3.27.0",
"tinyglobby": "^0.2.10",
"typed.js": "^2.1.0",
"vitepress-plugin-group-icons": "^1.3.2",
"vitepress-plugin-rss": "^0.3.0",
"vitepress-plugin-tabs": "^0.5.0",
"vue": "^3.4.21",
"vue-easy-lightbox": "^1.19.0"
},
"devDependencies": {
"@hacxy/eslint-config": "^0.0.6",
"@types/fs-extra": "^11.0.4",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.14.9",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-istanbul": "2.1.8",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"cz-git": "^1.11.0",
"eslint": "^9.17.0",
"execa": "^9.5.2",
"get-port": "^7.1.0",
"lint-staged": "^15.2.11",
"nanoid": "^5.0.9",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"tsup": "8.3.5",
"typescript": "^5.3.3",
"vite": "^5.4.14",
"vitepress": "^1.6.3",
"vitest": "^2.1.8"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/git-hooks/commit-msg.mjs"
},
"lint-staged": {
"*": [
"pnpm -r run lint:staged"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"useEmoji": false
}
}
}