forked from vuepress-theme-hope/vuepress-theme-hope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.23 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
{
"name": "vuepress-theme-hope-root",
"version": "2.0.0-beta.203",
"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/**/*.{scss,css}",
"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.5.1",
"@commitlint/config-conventional": "17.4.4",
"@rollup/plugin-alias": "5.0.0",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.2",
"@rollup/plugin-replace": "5.0.2",
"@types/inquirer": "9.0.3",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"@vitest/coverage-c8": "0.30.1",
"@vue/eslint-config-typescript": "11.0.2",
"bumpp": "9.1.0",
"commit-and-tag-version": "11.2.1",
"commitizen": "4.3.0",
"concurrently": "8.0.1",
"cpx2": "4.2.3",
"cross-env": "7.0.3",
"cz-git": "1.6.1",
"esbuild": "0.17.16",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.10.0",
"execa": "7.1.1",
"gulp": "4.0.2",
"http-server": "14.1.1",
"husky": "8.0.3",
"inquirer": "9.1.5",
"magic-string": "0.30.0",
"markdownlint-cli": "0.33.0",
"nano-staged": "0.8.0",
"ora": "6.3.0",
"picocolors": "1.0.0",
"prettier": "2.8.7",
"rimraf": "4.4.1",
"rollup": "3.20.2",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-dts": "5.3.0",
"rollup-plugin-esbuild": "5.0.0",
"sort-package-json": "2.4.1",
"stylelint": "15.4.0",
"stylelint-config-hope": "2.0.1",
"through2": "4.0.2",
"tslib": "2.5.0",
"tsx": "3.12.6",
"typescript": "5.0.4",
"vitest": "0.30.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "^14.18.0 || >=16.0.0",
"npm": ">=8",
"pnpm": ">=7"
},
"pnpm": {
"overrides": {
"cacache": "^17.0.4",
"chokidar": "^3.5.3",
"css": "npm:@adobe/css-tools@^4.0.1",
"glob-stream": "^7.0.0",
"glob-parent": "^6.0.2",
"micromatch": "^4.0.5",
"yargs-parser": "^21.1.1"
},
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"eslint-plugin-import",
"eslint-plugin-n",
"eslint-plugin-promise",
"react",
"react-dom",
"webpack"
]
},
"patchedDependencies": {
"@types/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}