| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- {
- "name": "@d8d/mini-charts",
- "version": "1.0.0",
- "type": "module",
- "description": "小程序图表库包 - 提供 u-charts 图表库核心功能",
- "main": "src/index.ts",
- "types": "src/index.ts",
- "exports": {
- ".": {
- "types": "./dist/src/index.d.ts",
- "import": "./dist/src/index.js",
- "require": "./dist/src/index.js"
- },
- "./components/BaseChart": {
- "types": "./dist/src/components/BaseChart.d.ts",
- "import": "./dist/src/components/BaseChart.js",
- "require": "./dist/src/components/BaseChart.js"
- },
- "./components/BarChart": {
- "types": "./dist/src/components/BarChart.d.ts",
- "import": "./dist/src/components/BarChart.js",
- "require": "./dist/src/components/BarChart.js"
- },
- "./components/CandleChart": {
- "types": "./dist/src/components/CandleChart.d.ts",
- "import": "./dist/src/components/CandleChart.js",
- "require": "./dist/src/components/CandleChart.js"
- },
- "./components/ColumnChart": {
- "types": "./dist/src/components/ColumnChart.d.ts",
- "import": "./dist/src/components/ColumnChart.js",
- "require": "./dist/src/components/ColumnChart.js"
- },
- "./components/LineChart": {
- "types": "./dist/src/components/LineChart.d.ts",
- "import": "./dist/src/components/LineChart.js",
- "require": "./dist/src/components/LineChart.js"
- },
- "./components/PieChart": {
- "types": "./dist/src/components/PieChart.d.ts",
- "import": "./dist/src/components/PieChart.js",
- "require": "./dist/src/components/PieChart.js"
- },
- "./components/RadarChart": {
- "types": "./dist/src/components/RadarChart.d.ts",
- "import": "./dist/src/components/RadarChart.js",
- "require": "./dist/src/components/RadarChart.js"
- },
- "./components/ColumnChartFCExample": {
- "types": "./dist/src/components/ColumnChartFCExample.d.ts",
- "import": "./dist/src/components/ColumnChartFCExample.js",
- "require": "./dist/src/components/ColumnChartFCExample.js"
- },
- "./components/PieChartFCExample": {
- "types": "./dist/src/components/PieChartFCExample.d.ts",
- "import": "./dist/src/components/PieChartFCExample.js",
- "require": "./dist/src/components/PieChartFCExample.js"
- },
- "./components/RingChart": {
- "types": "./dist/src/components/RingChart.d.ts",
- "import": "./dist/src/components/RingChart.js",
- "require": "./dist/src/components/RingChart.js"
- },
- "./components/RingChartFCExample": {
- "types": "./dist/src/components/RingChartFCExample.d.ts",
- "import": "./dist/src/components/RingChartFCExample.js",
- "require": "./dist/src/components/RingChartFCExample.js"
- }
- },
- "scripts": {
- "clean": "rimraf dist",
- "build": "tsc",
- "prebuild": "pnpm run clean",
- "dev": "tsc --watch",
- "typecheck": "tsc --noEmit",
- "test": "jest",
- "test:watch": "jest --watch",
- "test:coverage": "jest --coverage"
- },
- "dependencies": {
- "@tarojs/components": "4.1.4",
- "@tarojs/plugin-platform-weapp": "4.1.4",
- "@tarojs/react": "4.1.4",
- "@tarojs/taro": "4.1.4",
- "react": "^18.0.0",
- "react-dom": "^18.0.0"
- },
- "devDependencies": {
- "@d8d/mini-testing-utils": "workspace:*",
- "@testing-library/jest-dom": "^6.8.0",
- "@testing-library/react": "^16.3.0",
- "@types/jest": "^29.5.14",
- "@types/node": "^18",
- "@types/react": "^18.0.0",
- "@types/react-dom": "^18.0.0",
- "jest": "^30.2.0",
- "jest-environment-jsdom": "^29.7.0",
- "rimraf": "^6.1.2",
- "ts-jest": "^29.4.5",
- "typescript": "^5.4.5"
- },
- "files": [
- "src"
- ],
- "keywords": [
- "mini",
- "charts",
- "u-charts",
- "taro",
- "react",
- "canvas"
- ],
- "author": "D8D Team",
- "license": "MIT"
- }
|