| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "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"
- },
- "./lib": {
- "types": "./dist/src/lib/index.d.ts",
- "import": "./dist/src/lib/index.js",
- "require": "./dist/src/lib/index.js"
- }
- },
- "scripts": {
- "build": "tsc",
- "dev": "tsc --watch",
- "typecheck": "tsc --noEmit",
- "test": "jest",
- "test:watch": "jest --watch",
- "test:coverage": "jest --coverage"
- },
- "dependencies": {
- "@tarojs/components": "4.1.4",
- "@tarojs/react": "4.1.4",
- "@tarojs/taro": "4.1.4",
- "react": "^18.0.0",
- "react-dom": "^18.0.0"
- },
- "devDependencies": {
- "@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",
- "ts-jest": "^29.4.5",
- "typescript": "^5.4.5"
- },
- "files": [
- "src"
- ],
- "keywords": [
- "mini",
- "charts",
- "u-charts",
- "taro",
- "react",
- "canvas"
- ],
- "author": "D8D Team",
- "license": "MIT"
- }
|