@ace-grid/wc 1.0.7
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/README.md +36 -0
- package/dist/wc.cjs +6776 -0
- package/dist/wc.d.ts +60 -0
- package/dist/wc.js +9551 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ace-grid/wc",
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "Ace Grid Web Component wrapper for framework-neutral grid usage.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/wc.cjs",
|
|
7
|
+
"module": "./dist/wc.js",
|
|
8
|
+
"types": "./dist/wc.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/wc.d.ts",
|
|
12
|
+
"import": "./dist/wc.js",
|
|
13
|
+
"require": "./dist/wc.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "vite build && tsc -p tsconfig.build.json && node ../../scripts/protect-wrapper-package.mjs wc"
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist/wc.js",
|
|
24
|
+
"dist/wc.cjs",
|
|
25
|
+
"dist/wc.d.ts"
|
|
26
|
+
],
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"react": "19.1.1",
|
|
29
|
+
"react-dom": "19.1.1"
|
|
30
|
+
},
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/Vitashev/gridix.git"
|
|
35
|
+
},
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/Vitashev/gridix/issues"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://ace-grid.com",
|
|
40
|
+
"keywords": [
|
|
41
|
+
"ace-grid",
|
|
42
|
+
"web-components",
|
|
43
|
+
"custom-elements",
|
|
44
|
+
"data-grid",
|
|
45
|
+
"spreadsheet"
|
|
46
|
+
]
|
|
47
|
+
}
|