@earthyscience/netcdf4-wasm 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/LICENSE +21 -0
- package/README.md +386 -0
- package/dist/constants.d.ts +30 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +62 -0
- package/dist/constants.js.map +1 -0
- package/dist/dimension.d.ts +9 -0
- package/dist/dimension.d.ts.map +1 -0
- package/dist/dimension.js +19 -0
- package/dist/dimension.js.map +1 -0
- package/dist/group.d.ts +33 -0
- package/dist/group.d.ts.map +1 -0
- package/dist/group.js +148 -0
- package/dist/group.js.map +1 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +48 -0
- package/dist/index.js.map +1 -0
- package/dist/netcdf4-wasm.js +2 -0
- package/dist/netcdf4-wasm.wasm +0 -0
- package/dist/netcdf4.d.ts +57 -0
- package/dist/netcdf4.d.ts.map +1 -0
- package/dist/netcdf4.js +704 -0
- package/dist/netcdf4.js.map +1 -0
- package/dist/test-setup.d.ts +13 -0
- package/dist/test-setup.d.ts.map +1 -0
- package/dist/test-setup.js +78 -0
- package/dist/test-setup.js.map +1 -0
- package/dist/types.d.ts +233 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +5 -0
- package/dist/types.js.map +1 -0
- package/dist/variable.d.ts +36 -0
- package/dist/variable.d.ts.map +1 -0
- package/dist/variable.js +152 -0
- package/dist/variable.js.map +1 -0
- package/dist/wasm-module.d.ts +6 -0
- package/dist/wasm-module.d.ts.map +1 -0
- package/dist/wasm-module.js +556 -0
- package/dist/wasm-module.js.map +1 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@earthyscience/netcdf4-wasm",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "NetCDF4 library compiled to WebAssembly with TypeScript bindings",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "npm run build:wasm && npm run build:js",
|
|
16
|
+
"build:wasm": "bash scripts/build-wasm.sh",
|
|
17
|
+
"build:js": "tsc",
|
|
18
|
+
"clean": "rm -rf dist build coverage",
|
|
19
|
+
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest",
|
|
20
|
+
"test:watch": "NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest --watch",
|
|
21
|
+
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest --coverage",
|
|
22
|
+
"lint": "echo 'Linting not configured yet'",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"prepublishOnly": "npm run clean && npm run install-emscripten && npm run build && npm run test",
|
|
25
|
+
"install-emscripten": "bash scripts/install-emscripten.sh",
|
|
26
|
+
"check-deps": "bash scripts/check-dependencies.sh"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"netcdf",
|
|
30
|
+
"netcdf4",
|
|
31
|
+
"wasm",
|
|
32
|
+
"webassembly",
|
|
33
|
+
"emscripten",
|
|
34
|
+
"scientific-computing"
|
|
35
|
+
],
|
|
36
|
+
"author": "Oceanum.io",
|
|
37
|
+
"contributors": [
|
|
38
|
+
{
|
|
39
|
+
"name": "Lazaro Alonso",
|
|
40
|
+
"email": "lazarus.alon@gmail.com",
|
|
41
|
+
"url": "https://lazarusa.github.io"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "Jeran Poehls",
|
|
45
|
+
"email": "jpoehls@bgc-jena.mpg.de"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/jest": "^29.0.0",
|
|
51
|
+
"@types/node": "^20.0.0",
|
|
52
|
+
"jest": "^29.0.0",
|
|
53
|
+
"ts-jest": "^29.0.0",
|
|
54
|
+
"typescript": "^5.0.0"
|
|
55
|
+
},
|
|
56
|
+
"files": [
|
|
57
|
+
"dist/",
|
|
58
|
+
"README.md",
|
|
59
|
+
"LICENSE"
|
|
60
|
+
],
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://github.com/oceanum-io/netcdf4-wasm.git"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://oceanum-io.github.io/netcdf4-wasm/",
|
|
66
|
+
"bugs": {
|
|
67
|
+
"url": "https://github.com/oceanum-io/netcdf4-wasm/issues"
|
|
68
|
+
}
|
|
69
|
+
}
|