-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.76 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.76 KB
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
{
"name": "vue-echarts",
"version": "8.1.0-beta.2",
"description": "Vue.js component for Apache ECharts™.",
"license": "MIT",
"author": "GU Yiling <justice360@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/ecomfe/vue-echarts.git"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"exports": {
".": "./dist/index.js",
"./style.css": "./dist/style.css",
"./graphic": {
"types": "./dist/graphic.d.ts",
"default": "./dist/graphic.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsdown",
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.vitest.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "oxfmt",
"publint": "publint",
"dev:build": "vite build",
"dev:preview": "vite preview",
"dev:typecheck": "vue-tsc -p ./demo",
"test:setup": "playwright install chromium",
"docs": "jiti ./scripts/docs.ts",
"release": "bumpp --execute \"pnpm run docs\" --all",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:browser": "vitest run --project browser",
"test:node": "vitest run --project node"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@typescript-eslint/utils": "^8.39.1",
"@vercel/analytics": "^2.0.0",
"@vitejs/plugin-vue": "^6.0.3",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-istanbul": "^4.0.16",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/server-renderer": "^3.5.18",
"@vue/tsconfig": "^0.9.0",
"@vueuse/core": "^14.0.0",
"bumpp": "^11.0.0",
"comment-mark": "^2.0.1",
"echarts": "^6.0.0",
"echarts-gl": "^2.0.9",
"eslint": "^10.0.0",
"eslint-plugin-vue": "^10.8.0",
"jiti": "^2.5.1",
"lefthook": "^2.0.13",
"monaco-editor": "0.54.0",
"oxfmt": "^0.47.0",
"pinia": "^3.0.3",
"playwright": "^1.55.0",
"postcss-nested": "^7.0.2",
"publint": "^0.3.12",
"releaselog": "^7.0.0",
"tsdown": "^0.21.0",
"typescript": "^6.0.0",
"unplugin-raw": "^0.7.0",
"vite": "8.0.10",
"vitest": "^4.0.16",
"vitest-browser-vue": "^2.0.1",
"vue": "^3.5.18",
"vue-component-type-helpers": "^3.0.0",
"vue-tsc": "^3.0.5"
},
"peerDependencies": {
"echarts": "^6.0.0",
"vue": "^3.3.0"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"overrides": {
"dompurify": "3.4.1",
"minimatch@9": "10.2.5"
},
"peerDependencyRules": {
"allowedVersions": {
"echarts": "6"
}
},
"onlyBuiltDependencies": [
"lefthook"
]
}
}