-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
41 lines (41 loc) · 1.43 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
{
"name": "mock-dev-server-monorepo",
"type": "module",
"version": "1.8.3",
"private": true,
"packageManager": "[email protected]",
"author": "pengzhanbo <[email protected]> (https://github.com/pengzhanbo)",
"license": "MIT",
"scripts": {
"build": "pnpm -F vite-plugin-mock-dev-server build",
"dev": "pnpm -F example dev",
"example:build": "pnpm -F example build",
"docs:build": "pnpm -F docs docs:build",
"docs:dev": "pnpm -F docs docs:dev",
"docs:preview": "pnpm -F docs docs:preview",
"lint": "eslint .",
"test": "vitest",
"release:check": "vitest run && pnpm run build",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release:version": "bumpp package.json {plugin,docs,example}/package.json --execute=\"pnpm release:changelog\" --commit --all --push --tag",
"release": "pnpm release:check && pnpm release:version && pnpm -r publish"
},
"devDependencies": {
"@pengzhanbo/eslint-config": "^1.22.1",
"@types/co-body": "^6.1.3",
"@types/cookies": "^0.9.0",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/formidable": "2.0.6",
"@types/is-core-module": "^2.2.2",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.10.5",
"@types/ws": "^8.5.13",
"bumpp": "^9.9.2",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.17.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}