@zvndev/yable-react 0.0.0-canary-20260629011348

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,90 @@
1
+ {
2
+ "name": "@zvndev/yable-react",
3
+ "version": "0.0.0-canary-20260629011348",
4
+ "description": "React adapter for @zvndev/yable-core -- components, hooks, and form controls for building data tables",
5
+ "keywords": [
6
+ "react",
7
+ "table",
8
+ "data-grid",
9
+ "datagrid",
10
+ "components",
11
+ "hooks",
12
+ "typescript",
13
+ "editing"
14
+ ],
15
+ "license": "MIT",
16
+ "author": "ZVN DEV",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/ZVN-DEV/yable.git",
20
+ "directory": "packages/react"
21
+ },
22
+ "homepage": "https://github.com/ZVN-DEV/yable#readme",
23
+ "type": "module",
24
+ "main": "./dist/index.cjs",
25
+ "module": "./dist/index.js",
26
+ "types": "./dist/index.d.ts",
27
+ "exports": {
28
+ ".": {
29
+ "import": {
30
+ "types": "./dist/index.d.ts",
31
+ "default": "./dist/index.js"
32
+ },
33
+ "require": {
34
+ "types": "./dist/index.d.cts",
35
+ "default": "./dist/index.cjs"
36
+ }
37
+ }
38
+ },
39
+ "files": [
40
+ "dist"
41
+ ],
42
+ "sideEffects": false,
43
+ "dependencies": {
44
+ "@zvndev/yable-core": "0.0.0-canary-20260629011348"
45
+ },
46
+ "peerDependencies": {
47
+ "@chenglou/pretext": ">=0.0.5",
48
+ "react": ">=18.0.0",
49
+ "react-dom": ">=18.0.0",
50
+ "@zvndev/yable-themes": "0.4.1"
51
+ },
52
+ "peerDependenciesMeta": {
53
+ "@chenglou/pretext": {
54
+ "optional": true
55
+ },
56
+ "@zvndev/yable-themes": {
57
+ "optional": true
58
+ }
59
+ },
60
+ "devDependencies": {
61
+ "@chenglou/pretext": "^0.0.5",
62
+ "@testing-library/jest-dom": "^6.9.1",
63
+ "@testing-library/react": "^16.3.2",
64
+ "@testing-library/user-event": "^14.6.1",
65
+ "@types/react": "^19.0.0",
66
+ "@types/react-dom": "^19.0.0",
67
+ "jsdom": "^25.0.1",
68
+ "react": "^19.0.0",
69
+ "react-dom": "^19.0.0",
70
+ "tsup": "^8.3.0",
71
+ "typescript": "^5.7.0",
72
+ "vitest": "^2.1.0"
73
+ },
74
+ "bugs": {
75
+ "url": "https://github.com/ZVN-DEV/yable/issues"
76
+ },
77
+ "publishConfig": {
78
+ "access": "public"
79
+ },
80
+ "scripts": {
81
+ "build": "tsup",
82
+ "dev": "tsup --watch",
83
+ "lint": "eslint src",
84
+ "test": "vitest",
85
+ "test:ci": "vitest run --passWithNoTests",
86
+ "test:coverage": "vitest run --passWithNoTests --coverage",
87
+ "typecheck": "tsc --noEmit",
88
+ "clean": "rm -rf dist"
89
+ }
90
+ }