-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "webmystran-wasm",
"version": "0.1.1",
"description": "MYSTRAN WebAssembly build and wrapper.",
"repository": {
"type": "git",
"url": "https://github.com/PR-DC/WebXFOIL"
},
"homepage": "https://pr-dc.com",
"author": "Milos Petrasinovic <mpetrasinovic@pr-dc.com>",
"keywords": [
"mystran",
"fea",
"fem",
"fortran",
"wasm",
"webassembly"
],
"license": "MIT",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./mystran": "./src/web_mystran.js",
"./web_mystran": "./src/web_mystran.js",
"./mystran_input": "./src/mystran_input.js",
"./output_parser": "./src/output_parser.js",
"./wasm_runner": "./tools/wasm_runner.js",
"./package.json": "./package.json"
},
"files": [
"dist/",
"src/",
"tools/build.js",
"tools/smoke_test.js",
"tools/wasm_runner.js",
"scripts/",
"index.js",
"README.md",
"SOURCES.md",
"THIRD_PARTY_NOTICES.md",
"PATCHING.md",
"LICENSE"
],
"scripts": {
"fetch-deps": "powershell -ExecutionPolicy Bypass -NoProfile -File scripts/fetch_deps.ps1",
"build": "node tools/build.js",
"smoke": "node tools/smoke_test.js",
"smoke-full": "node tools/smoke_test.js full"
},
"engines": {
"node": ">=18"
}
}