-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "splat-web",
"version": "0.0.0",
"description": "A wasm-compiled fork of splat: an RF Signal Propagation Loss, And Terrain analysis tool",
"homepage": "https://github.com/peytondmurray/splat-web",
"bugs": {
"url": "https://github.com/peytondmurray/splat-web/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peytondmurray/splat-web.git"
},
"license": "GPL-2.0-or-later",
"author": "Peyton Murray",
"type": "module",
"exports": {
"./splat": {
"types": "./dist/splat.d.ts",
"default": "./dist/splat.js"
},
"./srtm2sdf": {
"types": "./dist/srtm2sdf.d.ts",
"default": "./dist/srtm2sdf.js"
}
},
"files": [
"dist/splat.js",
"dist/splat.d.ts",
"dist/splat-base.d.ts",
"dist/splat.wasm",
"dist/srtm2sdf.js",
"dist/srtm2sdf.d.ts",
"dist/srtm2sdf.wasm"
],
"scripts": {
"setup": "meson setup dist --cross-file=emscripten-cross.ini",
"compile": "meson compile -C dist",
"build": "rm -rf ./dist && npm run setup && npm run compile"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}