@quantumwake/terminal-ux-dashboard-components 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,77 @@
1
+ {
2
+ "name": "@quantumwake/terminal-ux-dashboard-components",
3
+ "version": "0.1.0",
4
+ "description": "Dashboard, chart-builder and SQL-runner React components for the Alethic ISM apps. Capability-injected: the host wires the query/save/load/search fns. ui-enterprise is the source of truth; the published viewer omits the logged-in-only verbs (save/edit/load) and renders read-only.",
5
+ "license": "MIT",
6
+ "author": "QuantumWake",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/quantumwake/terminal-ux-dashboard-components.git"
10
+ },
11
+ "keywords": [
12
+ "react",
13
+ "ui",
14
+ "dashboard",
15
+ "charts",
16
+ "duckdb",
17
+ "nivo",
18
+ "alethic"
19
+ ],
20
+ "type": "module",
21
+ "main": "./dist/index.cjs",
22
+ "module": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "import": {
27
+ "types": "./dist/index.d.ts",
28
+ "default": "./dist/index.js"
29
+ },
30
+ "require": {
31
+ "types": "./dist/index.d.cts",
32
+ "default": "./dist/index.cjs"
33
+ }
34
+ }
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "README.md",
39
+ "LICENSE"
40
+ ],
41
+ "sideEffects": false,
42
+ "scripts": {
43
+ "build": "tsup",
44
+ "dev": "tsup --watch",
45
+ "lint": "tsc --noEmit",
46
+ "prepublishOnly": "npm run lint && npm run build",
47
+ "release": "npm run lint && npm run build && npm publish --access public",
48
+ "release:dry": "npm run lint && npm run build && npm publish --access public --dry-run",
49
+ "version:patch": "npm version patch && npm run release",
50
+ "version:minor": "npm version minor && npm run release"
51
+ },
52
+ "peerDependencies": {
53
+ "react": ">=17.0.0",
54
+ "react-dom": ">=17.0.0",
55
+ "lucide-react": ">=0.4.0",
56
+ "@nivo/bar": "^0.99.0",
57
+ "@nivo/line": "^0.99.0",
58
+ "@nivo/pie": "^0.99.0",
59
+ "@nivo/scatterplot": "^0.99.0",
60
+ "@nivo/heatmap": "^0.99.0",
61
+ "react-pivottable": ">=0.11.0"
62
+ },
63
+ "devDependencies": {
64
+ "@types/react": "^19.0.0",
65
+ "@types/react-dom": "^19.0.0",
66
+ "react": "^19.0.0",
67
+ "react-dom": "^19.0.0",
68
+ "lucide-react": "^0.563.0",
69
+ "@nivo/bar": "^0.99.0",
70
+ "@nivo/line": "^0.99.0",
71
+ "@nivo/pie": "^0.99.0",
72
+ "@nivo/scatterplot": "^0.99.0",
73
+ "@nivo/heatmap": "^0.99.0",
74
+ "tsup": "^8.4.0",
75
+ "typescript": "^5.7.0"
76
+ }
77
+ }