SIGN IN SIGN UP
apache / echarts UNCLAIMED

Apache ECharts is a powerful, interactive charting and data visualization library for browser

0 0 78 TypeScript
2016-01-12 02:12:40 +08:00
{
2016-02-22 15:40:00 +08:00
"name": "echarts",
2022-09-13 18:20:15 +08:00
"version": "5.4.0",
2021-01-11 17:00:55 +08:00
"description": "Apache ECharts is a powerful, interactive charting and data visualization library for browser",
2019-01-22 14:58:33 -06:00
"license": "Apache-2.0",
2016-02-22 15:40:00 +08:00
"keywords": [
"echarts",
"data-visualization",
"charts",
"charting-library",
2016-02-22 15:40:00 +08:00
"visualization",
"apache",
"data-viz",
"canvas",
"svg"
2016-02-22 15:40:00 +08:00
],
"main": "dist/echarts.js",
2020-12-27 13:42:58 +08:00
"module": "index.js",
"jsdelivr": "dist/echarts.min.js",
2020-12-14 14:17:19 +08:00
"types": "index.d.ts",
"homepage": "https://echarts.apache.org",
"bugs": {
2021-01-18 23:50:06 +08:00
"url": "https://github.com/apache/echarts/issues",
"email": "dev@echarts.apache.org"
},
2016-02-22 15:40:00 +08:00
"repository": {
"type": "git",
2021-01-18 23:50:06 +08:00
"url": "git+https://github.com/apache/echarts.git"
2016-02-22 15:40:00 +08:00
},
"sideEffects": [
2020-12-27 13:42:58 +08:00
"index.js",
"index.blank.js",
"index.common.js",
"index.simple.js",
"lib/echarts.js",
"lib/chart/*.js",
2020-12-30 15:43:31 +08:00
"lib/component/*.js",
"extension/**/*.js",
"theme/*.js",
"i18n/*.js"
],
2016-02-22 15:40:00 +08:00
"scripts": {
"build": "node build/build.js --type all,common,simple --min",
"build:esm": "node build/build.js --type all --min --format esm",
2020-07-30 09:28:14 +08:00
"build:i18n": "node build/build-i18n.js",
"build:lib": "node build/build.js --prepublish",
2021-01-05 17:20:33 +08:00
"build:extension": "node build/build.js --type extension",
"dev:fast": "node build/build-i18n.js && node build/dev-fast.js",
"dev": "npm run dev:fast",
"prepublish": "npm run build:lib",
2021-01-05 17:20:33 +08:00
"release": "npm run build:lib && npm run build:i18n && npm run build && npm run build:esm && npm run build:extension",
"help": "node build/build.js --help",
"test:visual": "node test/runTest/server.js",
2020-12-14 14:17:19 +08:00
"test": "npx jest --config test/ut/jest.config.js",
"test:single": "npx jest --config test/ut/jest.config.js --coverage=false -t",
"test:single:debug": "npx --node-arg=--inspect-brk jest --runInBand --config test/ut/jest.config.js --coverage=false -t",
2020-11-08 09:15:49 +08:00
"test:dts": "node build/testDts.js",
"mktest": "node test/build/mktest.js",
"mktest:help": "node test/build/mktest.js -h",
"checktype": "tsc --noEmit",
2021-05-06 15:45:44 +08:00
"lint": "npx eslint src/**/*.ts extension-src/**/*.ts",
"lint:fix": "npx eslint --fix src/**/*.ts extension-src/**/*.ts",
"lint:dist": "echo 'It might take a while. Please wait ...' && npx jshint --config .jshintrc-dist dist/echarts.js"
2016-02-22 15:40:00 +08:00
},
"dependencies": {
2021-07-01 11:18:27 +08:00
"tslib": "2.3.0",
2022-09-13 18:20:15 +08:00
"zrender": "5.4.0"
2016-02-22 15:40:00 +08:00
},
"devDependencies": {
2020-12-14 14:17:19 +08:00
"@babel/code-frame": "7.10.4",
"@babel/core": "7.3.4",
2020-12-14 14:17:19 +08:00
"@babel/types": "7.10.5",
"@definitelytyped/typescript-versions": "0.0.64",
"@definitelytyped/utils": "0.0.64",
"@lang/rollup-plugin-dts": "2.0.2",
"@microsoft/api-extractor": "7.31.2",
2020-12-28 11:46:05 +08:00
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chalk": "^3.0.0",
2017-11-10 13:00:14 +08:00
"commander": "2.11.0",
"cwebp-bin": "^6.1.1",
2020-11-08 09:15:49 +08:00
"dtslint": "^4.0.5",
2021-02-01 20:17:46 +08:00
"esbuild": "^0.8.39",
2020-12-14 14:17:19 +08:00
"eslint": "^7.15.0",
2021-05-10 16:40:54 +08:00
"fs-extra": "^10.0.0",
2017-11-10 13:00:14 +08:00
"glob": "7.0.0",
"globby": "11.0.0",
"husky": "^4.2.5",
2020-10-28 02:10:17 +08:00
"jest": "^26.6.1",
"jest-canvas-mock": "^2.2.0",
"jshint": "2.13.5",
2021-01-05 17:50:41 +08:00
"magic-string": "^0.25.7",
"open": "6.4.0",
"pixelmatch": "5.0.2",
"pngjs": "3.4.0",
2020-12-14 14:17:19 +08:00
"rollup": "2.34.2",
"rollup-plugin-terser": "^7.0.2",
"seedrandom": "3.0.3",
"semver": "6.3.0",
"serve-handler": "6.1.1",
"slugify": "1.3.4",
"socket.io": "2.5.0",
2020-10-28 13:35:55 +08:00
"terser": "^5.3.8",
2020-10-28 02:10:17 +08:00
"ts-jest": "^26.4.3",
"typescript": "4.4.3"
2016-02-22 15:40:00 +08:00
}
}