@reogrid/pro 0.1.3

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,51 @@
1
+ {
2
+ "name": "@reogrid/pro",
3
+ "version": "0.1.3",
4
+ "description": "ReoGrid Pro — full-featured canvas spreadsheet library with xlsx import/export and no restrictions.",
5
+ "type": "module",
6
+ "main": "./pro.cjs",
7
+ "module": "./pro.js",
8
+ "types": "./pro.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./pro.d.ts",
12
+ "import": "./pro.js",
13
+ "require": "./pro.cjs"
14
+ },
15
+ "./react": {
16
+ "types": "./pro-react.d.ts",
17
+ "import": "./pro-react.js",
18
+ "require": "./pro-react.cjs"
19
+ },
20
+ "./vue": {
21
+ "types": "./pro-vue.d.ts",
22
+ "import": "./pro-vue.js",
23
+ "require": "./pro-vue.cjs"
24
+ }
25
+ },
26
+ "peerDependencies": {
27
+ "react": ">=17",
28
+ "react-dom": ">=17",
29
+ "vue": ">=3"
30
+ },
31
+ "peerDependenciesMeta": {
32
+ "react": {
33
+ "optional": true
34
+ },
35
+ "react-dom": {
36
+ "optional": true
37
+ },
38
+ "vue": {
39
+ "optional": true
40
+ }
41
+ },
42
+ "license": "SEE LICENSE IN LICENSE",
43
+ "keywords": [
44
+ "spreadsheet",
45
+ "grid",
46
+ "canvas",
47
+ "excel",
48
+ "reogrid",
49
+ "pro"
50
+ ]
51
+ }