@updog/data-editor-wc 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/CHANGELOG.md +15 -0
- package/LICENSE +259 -0
- package/README.md +236 -0
- package/SECURITY.md +24 -0
- package/THIRD_PARTY_NOTICES.txt +353 -0
- package/assets/chatTransform.worker-BuuMWuTX.js +1 -0
- package/assets/filter.worker-Dtii7NzO.js +1 -0
- package/index.css +2 -0
- package/index.d.ts +1593 -0
- package/index.js +51541 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@updog/data-editor-wc",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Web Component wrapper for @updog/data-editor. Framework-agnostic, zero dependencies.",
|
|
5
|
+
"author": "Mikhail Kutateladze <admin@updog.tech>",
|
|
6
|
+
"homepage": "https://updog.tech",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"email": "admin@updog.tech"
|
|
9
|
+
},
|
|
10
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "./index.js",
|
|
13
|
+
"types": "./index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./index.d.ts",
|
|
17
|
+
"default": "./index.js"
|
|
18
|
+
},
|
|
19
|
+
"./styles.css": "./index.css"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"index.js",
|
|
23
|
+
"index.css",
|
|
24
|
+
"index.d.ts",
|
|
25
|
+
"assets",
|
|
26
|
+
"README.md",
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"CHANGELOG.md",
|
|
29
|
+
"SECURITY.md",
|
|
30
|
+
"THIRD_PARTY_NOTICES.txt"
|
|
31
|
+
],
|
|
32
|
+
"keywords": [
|
|
33
|
+
"web-component",
|
|
34
|
+
"custom-element",
|
|
35
|
+
"spreadsheet",
|
|
36
|
+
"data-editor",
|
|
37
|
+
"csv",
|
|
38
|
+
"xlsx"
|
|
39
|
+
],
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public",
|
|
42
|
+
"registry": "https://registry.npmjs.org/"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"prepublishOnly": "node -e \"const p=require('./package.json');if(p.private)throw new Error('private');if(!/^\\\\d+\\\\.\\\\d+\\\\.\\\\d+/.test(p.version))throw new Error('bad version')\""
|
|
46
|
+
}
|
|
47
|
+
}
|