-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.71 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
{
"name": "@ruan-cat-vercel-monorepo-test/root",
"private": true,
"version": "1.0.0",
"author": "ruan-cat",
"license": "ISC",
"description": "这是单仓架构项目的根目录。",
"main": "index.js",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.15.1",
"vscode": "^1.22.0",
"pnpm": ">=9.5.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"scripts": {
"preinstall": "npx only-allow pnpm && npm run corepack:pnpm",
"corepack:pnpm": "corepack enable && corepack install",
"commit": "git-cz",
"test:vitest": "vitest --ui --watch",
"git:fetch": "git fetch -p",
"git:dev-2-main": "git rebase dev main",
"git:main-2-dev": "git rebase main dev",
"rm:node_modules": "pnpm -r rm:node_modules && rimraf node_modules pnpm-lock.yaml",
"clear": "rimraf dist .turbo .vercel .cache .temp",
"pnpm:clear": "pnpm -r clear && pnpm run clear",
"turbo:clear": "turbo clear",
"update-package": "pnpm dlx vp-update",
"turbo:update-packages": "turbo docs:update-package && pnpm update-package",
"prettier": "prettier --write .",
"eci:open": "eslint-config-inspector",
"eci:b": "eslint-config-inspector build",
"turbo:build-docs": "turbo build:docs",
"on-github-action-flow": "turbo eci:b build:docs",
"npm:login": "pnpm login --registry=https://registry.npmjs.org/",
"changeset:init": "changeset init",
"changeset:add": "changeset add",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"turbo:publish": "turbo build do-publish",
"code-workspace:del": "trash *.code-workspace",
"precode-workspace:create": "pnpm run code-workspace:del",
"code-workspace:create": "node --import=tsx ./scripts/generate.code-workspace.ts",
"turbo:do-create-code-workspace": "turbo do-create-code-workspace",
"deploy-vercel": "node --import=tsx ./scripts/vercel-deploy-tool.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@changesets/cli": "^2.27.9",
"@eslint/config-inspector": "^0.5.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@ruan-cat/domains": "workspace:^",
"@ruan-cat/generate-code-workspace": "workspace:^",
"@ruan-cat/utils": "workspace:^",
"@ruan-cat/vercel-deploy-tool": "workspace:^",
"@ruan-cat/vuepress-preset-config": "workspace:^",
"@types/eslint-config-prettier": "^6.11.3",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.10",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.16.11",
"@vitest/ui": "2.2.0-beta.2",
"@vuepress/bundler-vite": "2.0.0-rc.18",
"commitizen": "^4.3.1",
"consola": "^3.2.3",
"cpx2": "^7.0.2",
"cross-env": "^7.0.3",
"cz-git": "^1.10.1",
"czg": "^1.10.1",
"del": "^8.0.0",
"esbuild": "^0.23.1",
"esbuild-register": "^3.6.0",
"eslint": "^9.12.0",
"eslint-config-flat-gitignore": "^0.1.8",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.1.3",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-prettier": "^5.2.1",
"execa": "^9.4.0",
"glob": "^11.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"mkdirp": "^3.0.1",
"pkg-types": "^1.2.1",
"prettier": "^3.3.3",
"prettier-plugin-lint-md": "^1.0.1",
"rimraf": "^6.0.1",
"shx": "^0.3.4",
"trash-cli": "^6.0.0",
"tsx": "^4.19.1",
"turbo": "^2.1.3",
"type-fest": "^4.26.1",
"type-plus": "^7.6.2",
"typescript": "catalog:",
"typescript-lodash": "^0.2.2",
"vercel": "^39.1.2",
"vite": "^5.4.8",
"vite-node": "^2.1.2",
"vitest": "2.2.0-beta.2",
"vue": "^3.5.11",
"vue-tsc": "^2.1.6",
"vuepress": "2.0.0-rc.18",
"vuepress-theme-hope": "2.0.0-rc.58",
"wrangler": "^3.80.2"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.17.0",
"lodash-es": "catalog:"
}
}