forked from YunYouJun/hexo-theme-yun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "@hexo-theme-yun/monorepo",
"private": true,
"packageManager": "[email protected]",
"description": "☁️ A fast & light & lovely theme for Hexo.",
"keywords": [
"hexo",
"theme",
"yun"
],
"license": "MIT",
"author": "YunYouJun <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/YunYouJun/hexo-theme-yun.git"
},
"homepage": "https://yun.yunyoujun.cn",
"bugs": {
"url": "https://github.com/YunYouJun/hexo-theme-yun/issues"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "pnpm --dir=packages/hexo-theme-yun-js run build",
"dev": "pnpm run dev:lib & pnpm run demo",
"dev:lib": "pnpm --dir=packages/hexo-theme-yun-js run dev",
"demo": "pnpm --dir=demo run dev",
"demo:build": "pnpm --dir=demo run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"generate:demo-sites": "esno docs/.vitepress/scripts/index.ts",
"lint": "eslint .",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"publish:theme": "zx scripts/publish.mjs",
"release": "zx scripts/release.mjs"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@types/node": "^18.0.6",
"bumpp": "^8.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"esno": "~0.16.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"zx": "^7.0.7"
},
"lint-staged": {
"sites.json": "npm run generate:demo-sites"
}
}