Files
vueecharts/package.json
2026-02-19 01:40:55 +08:00

100 lines
2.7 KiB
JSON

{
"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": "^1.5.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.8.0",
"@vueuse/core": "^14.0.0",
"bumpp": "^10.2.3",
"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.28.0",
"pinia": "^3.0.3",
"playwright": "^1.55.0",
"postcss-nested": "^7.0.2",
"publint": "^0.3.12",
"releaselog": "^7.0.0",
"tsdown": "^0.20.0",
"typescript": "^5.9.2",
"unplugin-raw": "^0.6.0",
"vite": "beta",
"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.22.0",
"pnpm": {
"overrides": {
"vite": "8.0.0-beta.7"
},
"peerDependencyRules": {
"allowedVersions": {
"echarts": "6"
}
}
}
}