@classic-homes/charts-react 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@classic-homes/charts-react",
3
+ "version": "0.1.1",
4
+ "description": "React ECharts components for Classic Theme",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.mjs",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup src/index.ts --format esm,cjs --dts --external react --external react-dom --external echarts",
21
+ "dev": "tsup src/index.ts --format esm,cjs --dts --external react --external react-dom --external echarts --watch",
22
+ "clean": "rm -rf dist",
23
+ "typecheck": "tsc --noEmit"
24
+ },
25
+ "dependencies": {
26
+ "@classic-homes/charts-core": "*",
27
+ "@classic-homes/theme-tokens": "*",
28
+ "clsx": "^2.1.0",
29
+ "tailwind-merge": "^2.2.0"
30
+ },
31
+ "peerDependencies": {
32
+ "echarts": "^5.5.0",
33
+ "react": "^18.0.0 || ^19.0.0",
34
+ "react-dom": "^18.0.0 || ^19.0.0"
35
+ },
36
+ "devDependencies": {
37
+ "@types/react": "^18.2.0",
38
+ "@types/react-dom": "^18.2.0",
39
+ "echarts": "^5.5.0",
40
+ "react": "^18.2.0",
41
+ "react-dom": "^18.2.0",
42
+ "tsup": "^8.0.0",
43
+ "typescript": "^5.3.0"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
47
+ }
48
+ }