forked from YunYouJun/valaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 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
{
"name": "@valaxyjs/monorepo",
"type": "module",
"version": "0.10.3",
"private": true,
"packageManager": "[email protected]",
"description": "📄 Vite & Vue powered static blog generator.",
"author": {
"email": "[email protected]",
"name": "YunYouJun",
"url": "https://www.yunyoujun.cn"
},
"license": "MIT",
"repository": "https://github.com/YunYouJun/valaxy",
"keywords": [
"vite",
"vue",
"blog"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "pnpm run build:valaxy",
"build:valaxy": "pnpm -C packages/valaxy run build",
"build:demo": "pnpm -C demo/yun run build",
"build:docs": "pnpm -C docs run build",
"ci:publish": "zx scripts/publish.mjs",
"demo": "pnpm -C demo/yun run dev",
"dev:lib": "pnpm -C packages/valaxy run dev",
"dev": "pnpm -r --filter=./packages/** --parallel run dev",
"docs": "pnpm -C docs run dev",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"release": "tsx scripts/release.ts",
"start": "node packages/valaxy/bin/valaxy.js dev",
"typecheck": "vue-tsc --noEmit --skipLibCheck",
"test": "vitest",
"test:space": "export NODE_OPTIONS='--inspect --max-old-space-size=2048' && pnpm -C demo/yun run build:ssg",
"prepare": "husky install"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@types/debug": "^4.1.7",
"@types/prompts": "^2.0.14",
"@types/resolve": "^1.20.2",
"@types/semver": "^7.3.10",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"tsup": "^6.2.0",
"tsx": "^3.8.0",
"typescript": "^4.7.4",
"valaxy": "workspace:*",
"valaxy-addon-waline": "workspace:*",
"valaxy-theme-press": "workspace:*",
"valaxy-theme-yun": "workspace:*",
"vitest": "^0.19.1",
"vue-tsc": "0.39.0",
"zx": "^7.0.7"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"react",
"react-dom"
]
}
},
"lint-staged": {
"{packages,demo,scripts}/**/*.{js,ts,vue,json,yml}": [
"eslint --fix"
]
}
}