-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.96 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@ioai/hdf5",
"version": "1.0.1",
"description": "Performance-oriented HDF5 for the web and Node: WASM core + JS IO/cache + batch API",
"type": "module",
"license": "MIT",
"author": "IO-AI Tech (https://io-ai.tech/)",
"repository": {
"type": "git",
"url": "git+https://github.com/ioai-tech/wasm-hdf5.git"
},
"bugs": {
"url": "https://github.com/ioai-tech/wasm-hdf5/issues"
},
"keywords": [
"hdf5",
"wasm",
"webassembly",
"scientific",
"io",
"browser",
"worker"
],
"engines": {
"node": ">=22.0.0"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./wasm/ioai_hdf5.js": "./dist/wasm/ioai_hdf5.js",
"./wasm/ioai_hdf5.wasm": "./dist/wasm/ioai_hdf5.wasm"
},
"files": [
"dist",
"README.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md",
"native"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node scripts/sync-wasm-into-src.mjs && tsc -p tsconfig.build.json && node scripts/restore-emscripten-glue.mjs && node scripts/copy-wasm-to-dist.mjs",
"build:wasm:stub": "bash scripts/build-stub-wasm.sh",
"build:wasm:stub:docker": "bash scripts/build-stub-wasm-docker.sh",
"fetch:hdf5-source": "bash scripts/fetch-hdf5-source.sh",
"build:wasm:full:docker": "bash scripts/build-full-wasm-docker.sh",
"build:all": "npm run build:wasm:stub && npm run build",
"build:all:docker": "npm run build:wasm:full:docker && npm run build",
"smoke:wasm": "node scripts/wasm-node-smoke.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\""
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"eslint": "^9.39.4",
"globals": "^17.4.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.4"
}
}