@lensui/lens-table 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,72 @@
1
+ {
2
+ "name": "@lensui/lens-table",
3
+ "version": "0.1.0",
4
+ "description": "A lightweight, canvas-rendered React table component for LensUI.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./style.css": "./dist/index.css"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "sideEffects": [
23
+ "**/*.css"
24
+ ],
25
+ "scripts": {
26
+ "build": "tsup src/index.ts --format esm,cjs --dts --clean --external react --external react-dom",
27
+ "dev": "vite --host 127.0.0.1",
28
+ "test": "vitest run --root .",
29
+ "test:watch": "vitest --root .",
30
+ "typecheck": "tsc --noEmit",
31
+ "check": "pnpm typecheck && pnpm test && pnpm build",
32
+ "prepublishOnly": "pnpm check"
33
+ },
34
+ "keywords": [
35
+ "react",
36
+ "table",
37
+ "data-grid",
38
+ "canvas",
39
+ "virtual-scroll",
40
+ "typescript"
41
+ ],
42
+ "license": "MIT",
43
+ "peerDependencies": {
44
+ "react": ">=18.0.0",
45
+ "react-dom": ">=18.0.0"
46
+ },
47
+ "devDependencies": {
48
+ "@testing-library/react": "^16.3.0",
49
+ "@types/react": "^19.1.12",
50
+ "@types/react-dom": "^19.1.9",
51
+ "@vitejs/plugin-react": "^5.0.2",
52
+ "jsdom": "^26.1.0",
53
+ "react": "^19.1.1",
54
+ "react-dom": "^19.1.1",
55
+ "tsup": "^8.5.0",
56
+ "typescript": "^5.9.2",
57
+ "vite": "^7.1.4",
58
+ "vitest": "^3.2.4"
59
+ },
60
+ "engines": {
61
+ "node": ">=18"
62
+ },
63
+ "publishConfig": {
64
+ "access": "public"
65
+ },
66
+ "dependencies": {
67
+ "@ark-ui/react": "^5.39.1",
68
+ "@atlaskit/pragmatic-drag-and-drop": "^2.0.1",
69
+ "@atlaskit/pragmatic-drag-and-drop-hitbox": "^2.0.0",
70
+ "@internationalized/date": "3.12.3"
71
+ }
72
+ }