-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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": "@wcohen/wasmts",
"version": "0.1.0-alpha4",
"description": "A WebAssembly port of [JTS (Java Topology Suite)](https://github.com/locationtech/jts) using **GraalVM Native Image** with web-image backend.",
"homepage": "https://github.com/willcohen/wasmts#readme",
"bugs": {
"url": "https://github.com/willcohen/wasmts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willcohen/wasmts.git"
},
"license": "EPL-2.0 OR BSD-3-Clause",
"author": "Will Cohen",
"type": "module",
"main": "dist/wasmts.js",
"scripts": {
"build:wasm": "mvn package",
"build:js": "node js/build.mjs",
"build": "npm run build:wasm && npm run build:js",
"test": "node --experimental-wasm-exnref test/test-node.mjs",
"serve": "python3 -m http.server 8000",
"clean": "mvn clean && rm -rf dist js/src"
},
"files": [
"dist/wasmts.js",
"dist/wasmts.js.wasm",
"LICENSE_EPLv2.txt",
"LICENSE_EDLv1.txt",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"esbuild": "^0.25.11"
}
}