-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
{
"name": "@uni-echarts/monorepo",
"type": "module",
"version": "0.0.7",
"private": true,
"packageManager": "[email protected]",
"description": "🪀 适用于uni-app的Apache ECharts组件(仅支持Vue 3)",
"scripts": {
"prepare": "simple-git-hooks",
"postinstall": "nr build",
"play:h5": "nr -C playground dev:h5",
"play:mp-weixin": "nr -C playground dev:mp-weixin",
"build": "nr -r --filter=./packages/* build",
"build:uni": "nr build && esno scripts/uni/build.ts",
"release": "bumpp package.json packages/core/package.json playground/package.json scripts/uni/package.json",
"clean": "rimraf **/dist **/dist-resolver **/uni_modules --glob",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"lint:type": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@antfu/ni": "^23.2.0",
"@antfu/utils": "^8.1.0",
"@dcloudio/types": "^3.4.14",
"@mini-types/alipay": "^3.0.14",
"@types/fs-extra": "^11.0.4",
"@uni-helper/uni-app-types": "^1.0.0-alpha.6",
"@xiaohe01/eslint-config": "^0.0.10",
"@xiaohe01/tsconfig": "^0.0.2",
"bumpp": "^9.10.1",
"chalk": "^5.4.1",
"consola": "^3.4.0",
"eslint": "^9.18.0",
"esno": "^4.8.0",
"execa": "^9.5.2",
"fs-extra": "^11.3.0",
"lint-staged": "^15.4.1",
"miniprogram-api-typings": "^4.0.4",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.4.11",
"vitest": "^2.1.8",
"vue-tsc": "~2.1.10"
},
"pnpm": {
"overrides": {
"pinia": "2.2.4"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}