belobog-stellar-grid 1.0.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/LICENSE_APACHE +176 -0
- package/LICENSE_MIT +25 -0
- package/README.md +413 -0
- package/belobog_stellar_grid.d.ts +126 -0
- package/belobog_stellar_grid.js +690 -0
- package/belobog_stellar_grid_bg.wasm +0 -0
- package/package.json +33 -0
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "belobog-stellar-grid",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"collaborators": [
|
|
5
|
+
"Kurisu <makise_kurisuu@outlook.jp>"
|
|
6
|
+
],
|
|
7
|
+
"description": "一个安全高效的 WebAssembly 库,用于将 HTML 表格数据导出为 CSV 和 XLSX 文件",
|
|
8
|
+
"version": "1.0.0",
|
|
9
|
+
"license": "MIT OR Apache-2.0",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/kurisu994/belobog-stellar-grid"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"belobog_stellar_grid_bg.wasm",
|
|
16
|
+
"belobog_stellar_grid.js",
|
|
17
|
+
"belobog_stellar_grid.d.ts",
|
|
18
|
+
"LICENSE_APACHE",
|
|
19
|
+
"LICENSE_MIT"
|
|
20
|
+
],
|
|
21
|
+
"main": "belobog_stellar_grid.js",
|
|
22
|
+
"types": "belobog_stellar_grid.d.ts",
|
|
23
|
+
"sideEffects": [
|
|
24
|
+
"./snippets/*"
|
|
25
|
+
],
|
|
26
|
+
"keywords": [
|
|
27
|
+
"wasm",
|
|
28
|
+
"csv",
|
|
29
|
+
"xlsx",
|
|
30
|
+
"export",
|
|
31
|
+
"table"
|
|
32
|
+
]
|
|
33
|
+
}
|