forked from vuepress-theme-hope/vuepress-theme-hope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.78 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
{
"name": "vuepress-theme-hope-root",
"version": "2.0.0-beta.231",
"private": true,
"description": "A VuePress theme with tons of features",
"type": "module",
"workspaces": [
"demo/*",
"docs/*",
"packages/*"
],
"scripts": {
"build": "cross-env NODE_ENV=production pnpm run --stream -r build",
"build:no-bundle": "concurrently \"tsc -b tsconfig.build.json\" \"pnpm run copy\"",
"clean": "pnpm run --stream -r clean",
"commit": "pnpm git-cz",
"copy": "pnpm run --parallel -r copy",
"dev": "concurrently \"tsc -b tsconfig.build.json --watch\" \"pnpm run dev:copy\"",
"dev:copy": "pnpm run --parallel -r dev:copy",
"docs:vite-build": "pnpm run -r docs:vite-build",
"docs:webpack-build": "pnpm run -r docs:vite-build",
"lint": "pnpm lint:prettier --write && pnpm lint:eslint --fix && pnpm lint:stylelint --fix",
"lint:check": "pnpm lint:prettier && pnpm lint:eslint && pnpm lint:stylelint",
"lint:eslint": "eslint . --ext .js,.ts,.vue",
"lint:md": "markdownlint **/*.md",
"lint:prettier": "prettier --check .",
"lint:stylelint": "stylelint packages/*/src/**/*.{css,scss}",
"packages:bootstrap": "tsx scripts/bootstrap.ts",
"packages:check-update": "pnpm dlx npm-check-updates -u --deep --timeout 600000",
"packages:update": "pnpm up -r",
"prepare": "husky install",
"release": "pnpm clean && pnpm build && pnpm release:bump && pnpm release:publish && pnpm release:sync",
"release:bump": "bumpp -r --execute=\"pnpm commit-and-tag-version && git add CHANGELOG.md\" --commit \"chore(release): publish v%s\" --all --tag --push",
"release:publish": "cross-env NODE_OPTIONS=\"--experimental-json-modules\" tsx scripts/release.ts",
"release:sync": "cross-env NODE_OPTIONS=\"--experimental-json-modules\" tsx scripts/sync.ts",
"test": "vitest --coverage"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@rollup/plugin-alias": "5.0.0",
"@rollup/plugin-commonjs": "25.0.2",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-replace": "5.0.2",
"@types/inquirer": "9.0.3",
"@types/node": "20.4.1",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"@vitest/coverage-v8": "0.33.0",
"@vue/eslint-config-typescript": "11.0.3",
"bumpp": "9.1.1",
"commit-and-tag-version": "11.2.2",
"commitizen": "4.3.0",
"concurrently": "8.2.0",
"cpx2": "5.0.0",
"cross-env": "7.0.3",
"cz-git": "1.7.0",
"esbuild": "0.18.11",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "5.0.0-alpha.2",
"eslint-plugin-vue": "9.15.1",
"execa": "7.1.1",
"gulp": "4.0.2",
"http-server": "14.1.1",
"husky": "8.0.3",
"inquirer": "9.2.7",
"magic-string": "0.30.1",
"markdownlint-cli": "0.35.0",
"nano-staged": "0.8.0",
"ora": "6.3.1",
"picocolors": "1.0.0",
"prettier": "3.0.0",
"rimraf": "5.0.1",
"rollup": "3.26.2",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-dts": "5.3.0",
"rollup-plugin-esbuild": "5.0.0",
"sort-package-json": "2.5.1",
"stylelint": "15.10.1",
"stylelint-config-hope": "3.0.0",
"through2": "4.0.2",
"tslib": "2.6.0",
"tsx": "3.12.7",
"typescript": "5.1.6",
"vitest": "0.33.0"
},
"packageManager": "pnpm@8.6.7",
"engines": {
"node": ">=16.14.0",
"npm": ">=8",
"pnpm": ">=8"
},
"pnpm": {
"overrides": {
"chokidar": "^3.5.3",
"css": "npm:@adobe/css-tools@^4.2.0",
"glob-stream": "^7.0.0",
"glob-parent": "^6.0.2",
"micromatch": "^4.0.5",
"yargs-parser": "^21.1.1"
}
}
}