@libxai/board 0.8.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,134 @@
1
+ {
2
+ "name": "@libxai/board",
3
+ "version": "0.8.0",
4
+ "type": "module",
5
+ "description": "Professional Gantt Chart + Kanban Board for React - Part of LibXAI Suite - TypeScript - Production-Ready - Zero Config",
6
+ "author": "LibXAI <hello@libxai.com>",
7
+ "license": "BUSL-1.1",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/libxai/libxai-suite.git",
11
+ "directory": "packages/board"
12
+ },
13
+ "homepage": "https://libxai.com/board",
14
+ "bugs": {
15
+ "url": "https://github.com/libxai/libxai-suite/issues"
16
+ },
17
+ "keywords": [
18
+ "libxai",
19
+ "libxai-suite",
20
+ "react",
21
+ "gantt-chart",
22
+ "kanban-board",
23
+ "project-management",
24
+ "task-management",
25
+ "typescript",
26
+ "ui-components",
27
+ "component-library",
28
+ "react-gantt",
29
+ "react-kanban",
30
+ "scheduling",
31
+ "planning",
32
+ "agile",
33
+ "scrum",
34
+ "drag-and-drop",
35
+ "productivity",
36
+ "team-collaboration"
37
+ ],
38
+ "main": "./dist/index.cjs",
39
+ "module": "./dist/index.js",
40
+ "types": "./dist/index.d.ts",
41
+ "exports": {
42
+ ".": {
43
+ "types": "./dist/index.d.ts",
44
+ "import": "./dist/index.js",
45
+ "require": "./dist/index.cjs"
46
+ },
47
+ "./styles.css": "./dist/styles.css"
48
+ },
49
+ "files": [
50
+ "dist",
51
+ "README.md",
52
+ "LICENSE"
53
+ ],
54
+ "sideEffects": [
55
+ "**/*.css"
56
+ ],
57
+ "scripts": {
58
+ "dev": "vite",
59
+ "build": "tsup",
60
+ "test": "vitest run",
61
+ "test:watch": "vitest",
62
+ "test:ui": "vitest --ui",
63
+ "test:coverage": "vitest run --coverage",
64
+ "bench": "vitest bench --run",
65
+ "bench:watch": "vitest bench",
66
+ "typecheck": "tsc --noEmit",
67
+ "lint": "eslint src --ext .ts,.tsx",
68
+ "format": "prettier --write \"src/**/*.{ts,tsx}\"",
69
+ "docs": "typedoc",
70
+ "demo": "npm run dev --prefix examples/demo"
71
+ },
72
+ "dependencies": {
73
+ "@ai-sdk/anthropic": "^2.0.27",
74
+ "@ai-sdk/openai": "^2.0.49",
75
+ "@dnd-kit/core": "^6.1.0",
76
+ "@dnd-kit/sortable": "^8.0.0",
77
+ "@libxai/core": "^0.8.0",
78
+ "@tanstack/react-virtual": "^3.13.12",
79
+ "class-variance-authority": "^0.7.0",
80
+ "clsx": "^2.1.1",
81
+ "cmdk": "^1.1.1",
82
+ "framer-motion": "^11.11.0",
83
+ "html2canvas": "^1.4.1",
84
+ "jspdf": "^3.0.3",
85
+ "jspdf-autotable": "^5.0.2",
86
+ "lucide-react": "^0.487.0",
87
+ "react-markdown": "^10.1.0",
88
+ "recharts": "^3.2.1",
89
+ "rehype-highlight": "^7.0.2",
90
+ "rehype-sanitize": "^6.0.0",
91
+ "remark-gfm": "^4.0.1",
92
+ "tailwind-merge": "^2.5.0",
93
+ "xlsx": "^0.18.5",
94
+ "zod": "^3.25.76"
95
+ },
96
+ "peerDependencies": {
97
+ "ai": "^4.0.0",
98
+ "react": "^18.0.0",
99
+ "react-dom": "^18.0.0"
100
+ },
101
+ "peerDependenciesMeta": {
102
+ "ai": {
103
+ "optional": true
104
+ }
105
+ },
106
+ "devDependencies": {
107
+ "@axe-core/react": "^4.11.0",
108
+ "@testing-library/jest-dom": "^6.5.0",
109
+ "@testing-library/react": "^16.0.0",
110
+ "@testing-library/user-event": "^14.5.2",
111
+ "@types/node": "^24.7.2",
112
+ "@types/react": "^18.3.0",
113
+ "@types/react-dom": "^18.3.0",
114
+ "@vitejs/plugin-react": "^4.3.0",
115
+ "@vitest/coverage-v8": "^2.1.9",
116
+ "@vitest/ui": "^2.1.0",
117
+ "ai": "^4.3.19",
118
+ "autoprefixer": "^10.4.20",
119
+ "axe-core": "^4.11.0",
120
+ "eslint-plugin-jsx-a11y": "^6.10.2",
121
+ "jsdom": "^25.0.0",
122
+ "postcss": "^8.4.47",
123
+ "postcss-cli": "^11.0.1",
124
+ "postcss-import": "^15.1.0",
125
+ "react": "^18.3.0",
126
+ "react-dom": "^18.3.0",
127
+ "tailwindcss": "^3.4.0",
128
+ "tsup": "^8.3.0",
129
+ "typedoc": "^0.28.14",
130
+ "typescript": "^5.6.0",
131
+ "vite": "^5.4.0",
132
+ "vitest": "^2.1.0"
133
+ }
134
+ }