@retab/react 0.0.1
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/dist/index.d.mts +1606 -0
- package/dist/index.d.ts +1606 -0
- package/dist/index.js +112 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +112 -0
- package/dist/index.mjs.map +1 -0
- package/dist/styles.css +6850 -0
- package/package.json +120 -0
package/package.json
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@retab/react",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Retab React widgets for document extraction",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./styles.css": "./dist/styles.css"
|
|
15
|
+
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist/**/*"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup && npm run build:css",
|
|
24
|
+
"build:css": "postcss ./src/styles/globals.css -o ./dist/styles.css",
|
|
25
|
+
"dev": "tsup --watch",
|
|
26
|
+
"clean": "rm -rf dist",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"@tanstack/react-query": ">=5.0.0",
|
|
31
|
+
"react": ">=18.0.0",
|
|
32
|
+
"react-dom": ">=18.0.0"
|
|
33
|
+
},
|
|
34
|
+
"peerDependenciesMeta": {
|
|
35
|
+
"react": {
|
|
36
|
+
"optional": false
|
|
37
|
+
},
|
|
38
|
+
"react-dom": {
|
|
39
|
+
"optional": false
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@hookform/resolvers": "^5.2.2",
|
|
44
|
+
"@monaco-editor/react": "^4.7.0",
|
|
45
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
46
|
+
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
47
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
48
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
49
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
50
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
51
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
52
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
53
|
+
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
54
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
55
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
56
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
57
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
58
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
59
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
60
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
61
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
62
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
63
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
64
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
65
|
+
"@tanstack/react-table": "^8.21.3",
|
|
66
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
67
|
+
"blakejs": "^1.2.1",
|
|
68
|
+
"class-variance-authority": "^0.7.1",
|
|
69
|
+
"clsx": "^2.1.1",
|
|
70
|
+
"date-fns": "^4.1.0",
|
|
71
|
+
"decimal.js": "^10.6.0",
|
|
72
|
+
"docx-preview": "^0.3.7",
|
|
73
|
+
"heic2any": "^0.0.4",
|
|
74
|
+
"lodash": "^4.17.21",
|
|
75
|
+
"lucide-react": "^0.514.0",
|
|
76
|
+
"mime-types": "^3.0.2",
|
|
77
|
+
"motion": "^12.23.25",
|
|
78
|
+
"react-day-picker": "^9.11.3",
|
|
79
|
+
"react-hook-form": "^7.67.0",
|
|
80
|
+
"react-pdf": "^10.2.0",
|
|
81
|
+
"react-syntax-highlighter": "^16.1.0",
|
|
82
|
+
"react-use-measure": "^2.1.7",
|
|
83
|
+
"sonner": "^2.0.7",
|
|
84
|
+
"sooner": "^1.1.4",
|
|
85
|
+
"tailwind-merge": "^2.5.5",
|
|
86
|
+
"vaul": "^1.1.2",
|
|
87
|
+
"xlsx": "^0.18.5",
|
|
88
|
+
"zustand": "^5.0.9"
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@tailwindcss/postcss": "^4.0.0",
|
|
92
|
+
"@tanstack/react-query": "^5.80.0",
|
|
93
|
+
"@types/lodash": "^4.17.21",
|
|
94
|
+
"@types/mime-types": "^3.0.1",
|
|
95
|
+
"@types/node": "^20.0.0",
|
|
96
|
+
"@types/react": "^19.0.0",
|
|
97
|
+
"@types/react-dom": "^19.0.0",
|
|
98
|
+
"postcss": "^8.4.0",
|
|
99
|
+
"postcss-cli": "^11.0.0",
|
|
100
|
+
"react": "^19.0.0",
|
|
101
|
+
"react-dom": "^19.0.0",
|
|
102
|
+
"tailwindcss": "^4.0.0",
|
|
103
|
+
"tsup": "^8.0.0",
|
|
104
|
+
"tw-animate-css": "^1.4.0",
|
|
105
|
+
"typescript": "^5.0.0"
|
|
106
|
+
},
|
|
107
|
+
"keywords": [
|
|
108
|
+
"retab",
|
|
109
|
+
"react",
|
|
110
|
+
"widgets",
|
|
111
|
+
"document-extraction",
|
|
112
|
+
"ocr"
|
|
113
|
+
],
|
|
114
|
+
"author": "Retab",
|
|
115
|
+
"license": "MIT",
|
|
116
|
+
"repository": {
|
|
117
|
+
"type": "git",
|
|
118
|
+
"url": "https://github.com/retab-dev/retab"
|
|
119
|
+
}
|
|
120
|
+
}
|