forked from opentiny/tiny-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
218 lines (218 loc) · 8.17 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
{
"name": "opentiny-vue",
"version": "3.6.1",
"private": true,
"packageManager": "pnpm@7.11.0",
"description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
"homepage": "https://opentiny.design/tiny-vue",
"keywords": [
"vue",
"vue3",
"frontend",
"component-library",
"components",
"vue-components",
"opentiny",
"renderless-components",
"headless-components"
],
"author": "OpenTiny Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:opentiny/tiny-vue.git"
},
"bugs": {
"url": "https://github.com/opentiny/tiny-vue/issues"
},
"sideEffects": false,
"main": "packages/index.js",
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm build:internals",
"bootstrap": "pnpm --filter=\"!./packages/dist/**\" install",
"dev": "pnpm build:entry && pnpm -C examples/vue3 dev",
"dev:vue2": "pnpm build:entry && pnpm -C examples/vue2 dev",
"dev:vue2.7": "pnpm build:entry && pnpm -C examples/vue2.7 dev",
"dev:docs": "pnpm -C examples/docs docs:dev",
"build:entry": "pnpm -C internals/cli build:entry",
"create:ui": "pnpm -C internals/cli create:ui",
"create:mapping": "pnpm -C internals/cli create:mapping",
"sync-icons": "pnpm -C internals/cli sync-icons",
"build:runtime": "pnpm -C internals/cli build:runtime",
"build:ui": "pnpm create:mapping && pnpm build:entry && pnpm -C internals/cli build:ui",
"build:renderless": "pnpm -C packages/renderless build",
"build:theme": "pnpm -C packages/theme build",
"build:themeMobile": "pnpm -C packages/theme-mobile build",
"build:internals": "pnpm \"--filter=./internals/*\" build",
"release:vue2": "pnpm -C internals/cli release:vue2",
"release:vue3": "pnpm -C internals/cli release:vue3",
"release:ui-vue2": "pnpm -C internals/cli release:ui-vue2",
"release:ui-vue3": "pnpm -C internals/cli release:ui-vue3",
"release:ui-test-vue2": "pnpm -C internals/cli release:ui-test-vue2",
"/* pubTgz */": "部署带绿标的 npm 包",
"pubTgz": "node .cloudbuild/pub-tgzs.js",
"pub2": "pnpm --filter=\"./packages/dist2/**\" publish --no-git-checks",
"pub3": "pnpm --filter=\"./packages/dist3/**\" publish --no-git-checks",
"format": "prettier --write --cache packages/**/{*.vue,*.js,*.ts,*.jsx,*.tsx} examples/**/{*.vue,*.js,*.ts,*.jsx,*.tsx} internal/**/{*.js,*.ts}",
"lint": "eslint \"packages/**/{*.vue,*.js,*.ts,*.jsx,*.tsx}\" --quiet",
"lint:doc": "eslint \"examples/**/{*.vue,*.js,*.ts,*.jsx,*.tsx}\" --quiet",
"lint:renderless": "eslint \"packages/renderless/src/**/{*.ts,*.tsx}\" --quiet",
"test": "npm run build:ui-vue2 -- action-sheet tab-item",
"test:ct": "cypress run-ct",
"test:pub": "npm run build:ui-vue2 && npm run release:ui-vue2 && npm run build:ui-vue3 && npm run release:ui-vue3 && mv -f tgzs/*.tgz ./ && npm run pubTgz -- production",
"test:pub-runtime": "npm run build:runtime-vue2 && npm run release:vue2 && npm run build:runtime-vue3 && npm run release:vue3 && mv -f tgzs/*.tgz ./ && npm run pubTgz -- production",
"test:pubTgz": "npm run pubTgz -- production",
"clean:build": "rimraf packages/dist2 packages/dist3 packages/renderless/dist",
"clean:dependencies": "rm -rf node_modules /**/node_modules",
"// ---------- 构建【mf】版本 ----------": "",
"preci:deployMfPatch": "pnpm clean:build && lerna version prepatch --conventional-prerelease --include-merged-tags --preid mf --no-push --yes",
"ci:deployMfPatch": "lerna publish from-package --yes --dist-tag mf",
"postci:deployMfPatch": "git push --follow-tags origin",
"// ---------- 构建【beta】版本 ----------": "",
"preci:deployBetaPatch": "pnpm clean:build && lerna version prepatch --conventional-prerelease --include-merged-tags --preid beta --no-push --yes",
"ci:deployBetaPatch": "lerna publish from-package --yes --dist-tag beta",
"postci:deployBetaPatch": "git push --follow-tags origin",
"// ---------- 构建【补丁】版本 ----------": "",
"preci:releasePatchVersion": "pnpm clean:build && lerna version patch --conventional-graduate --include-merged-tags --no-push --yes",
"ci:releasePatchVersion": "lerna publish from-package --yes",
"postci:releasePatchVersion": "git push --follow-tags origin",
"// ---------- 构建【特性】版本 ----------": "",
"preci:releaseMinorVersion": "pnpm clean:build && lerna version minor --conventional-graduate --include-merged-tags --no-push --yes",
"ci:releaseMinorVersion": "lerna publish from-package --yes",
"postci:releaseMinorVersion": "git push --follow-tags origin",
"// ---------- 手工构建发布指定组件 (Mf) ----------": "",
"preci:deployMf": "pnpm clean:build",
"ci:deployMf": "pnpm build:ui",
"postci:deployMf": "lerna publish from-package --yes --dist-tag mf",
"// ---------- 手工构建发布指定组件 (Beta) ----------": "",
"preci:deployBeta": "pnpm clean:build",
"ci:deployBeta": "pnpm build:ui",
"postci:deployBeta": "lerna publish from-package --yes --dist-tag beta"
},
"dependencies": {
"@vue/composition-api": "1.2.2",
"cropperjs": "1.5.12",
"crypto-js": "4.1.1",
"echarts": "5.3.3",
"echarts-liquidfill": "3.0.0",
"echarts-wordcloud": "2.0.0",
"fs-extra": "^11.1.0",
"shepherd.js": "11.0.1",
"streamsaver": "2.0.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.0",
"@types/eslint": "^8.4.10",
"@types/node": "^18.11.18",
"@typescript-eslint/parser": "^5.48.0",
"@volar-plugins/eslint": "^0.0.4",
"@volar-plugins/prettier": "^1.1.5",
"@volar-plugins/prettyhtml": "^1.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"@vue/tsconfig": "^0.1.3",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"depcheck": "1.4.3",
"eslint": "^8.31.0",
"lerna": "^6.4.0",
"nx": "^15.4.5",
"rimraf": "^3.0.2",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vue": "^3.2.31",
"vue-tsc": "^1.0.24",
"vue-tsc-eslint-hook": "^1.0.24"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue}": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pnpm": {
"patchedDependencies": {
"depcheck@1.4.3": "patches/depcheck@1.4.3.patch",
"vite-plugin-importus@1.0.4": "patches/vite-plugin-importus@1.0.4.patch"
},
"overrides": {
"@vue/compiler-sfc@3": "3.2.39",
"@vue/runtime-core@3": "3.2.39",
"@vue/runtime-dom@3": "3.2.39",
"@vue/shared@3": "3.2.39",
"cropperjs": "1.5.12",
"echarts": "5.3.3",
"follow-redirects": "1.14.8",
"regenerator-runtime": "0.13.9",
"tslib": "2.4.0",
"typescript": "^4.9.3",
"vue-i18n@8": "8.27.2",
"vue-i18n@9": "9.2.2",
"vue-router@3": "3.6.5",
"vue-router@4": "4.1.5",
"vue-template-compiler@2.6": "2.6.14",
"vue-template-compiler@2.7": "2.7.10",
"vue@2.6": "2.6.14",
"vue@2.7": "2.7.10",
"vue@3": "3.2.39",
"vue2": "npm:vue@2.6.14",
"vue2.7": "npm:vue@2.7.10",
"vue3": "npm:vue@3.2.39",
"vite-plugin-importus": "1.0.4"
},
"packageExtensions": {
"vue-template-compiler@2.6.14": {
"peerDependencies": {
"vue": "2.6.14"
}
},
"vue-template-compiler@2.7.10": {
"peerDependencies": {
"vue": "2.7.10"
}
},
"@vue/composition-api": {
"peerDependencies": {
"vue": "2.6.14"
}
},
"vite-plugin-dts": {
"peerDependencies": {
"vue": "3.2.39"
}
},
"vite-plugin-importus": {
"dependencies": {
"param-case": "^3.0.4"
}
},
"vite-plugin-md": {
"peerDependenciesMeta": {
"@vitejs/plugin-vue": {
"optional": true
}
}
}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}