@ifc-lite/charts 0.1.0

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,56 @@
1
+ {
2
+ "name": "@ifc-lite/charts",
3
+ "version": "0.1.0",
4
+ "description": "Headless chart data binding for IFC-Lite: aggregate model rows into buckets that keep their element ids, build ECharts options, render SVG",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "scripts": {
16
+ "build": "pnpm exec tsc",
17
+ "typecheck": "node ../../scripts/typecheck-tests.mjs",
18
+ "dev": "pnpm exec tsc --watch",
19
+ "test": "vitest run"
20
+ },
21
+ "dependencies": {
22
+ "@ifc-lite/data": "workspace:^",
23
+ "@ifc-lite/lens": "workspace:^",
24
+ "echarts": "^6.1.0"
25
+ },
26
+ "devDependencies": {
27
+ "@ifc-lite/parser": "workspace:^",
28
+ "typescript": "^6.0.3",
29
+ "vitest": "^4.1.11"
30
+ },
31
+ "license": "MPL-2.0",
32
+ "author": "Louis True",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/LTplus-AG/ifc-lite.git",
36
+ "directory": "packages/charts"
37
+ },
38
+ "homepage": "https://ifclite.dev/docs/",
39
+ "bugs": "https://github.com/LTplus-AG/ifc-lite/issues",
40
+ "keywords": [
41
+ "ifc",
42
+ "bim",
43
+ "charts",
44
+ "dashboard",
45
+ "echarts",
46
+ "visualization",
47
+ "aec"
48
+ ],
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "files": [
53
+ "dist",
54
+ "README.md"
55
+ ]
56
+ }