-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "json2excel-wasm",
"description": "WASM based web worker for converting excel data to raw json",
"keywords": ["excel", "convert", "wasm"],
"version": "1.5.2",
"license": "MIT",
"collaborators": [
"Aleksei Kolosov <akolosov@xbsoftware.com>",
"Maksim Kozhukh <mk@mono.ink>"
],
"repository": {
"type": "git",
"url": "https://github.com/DHTMLX/json2excel"
},
"files": [
"pkg/json2excel_wasm_bg.wasm",
"pkg/json2excel_wasm.js",
"pkg/json2excel_wasm_bg.js",
"pkg/json2excel_wasm.d.ts",
"dist/worker.js",
"dist/module.js"
],
"module": "dist/module.js",
"scripts": {
"dev": "yarn build && vite --mode worker",
"build:wasm": "cargo build && wasm-pack build --target web",
"build:module": "vite build --mode module",
"build:worker": "vite build --mode worker",
"build": "yarn build:wasm && yarn build:module && yarn build:worker"
},
"devDependencies": {
"vite": "^4.2.0",
"vite-plugin-wasm": "^3.2.2",
"vite-plugin-top-level-await": "^1.3.0"
}
}