-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.11 KB
/
package.json
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
{
"name": "ds-heightmap",
"version": "1.2.4",
"description": "Use diamond-square algorithm to generate heightmaps.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./wasm": "./wasm/ds_heightmap.js"
},
"files": [
"lib",
"wasm"
],
"scripts": {
"build": "npm run build:ts && npm run build:wasm",
"build:ts": "tsc",
"build:wasm": "cd rs && wasm-pack build --release --out-dir ../wasm && rm ../wasm/.gitignore",
"build:watch": "tsc --watch",
"lint": "tsc --noEmit --noUnusedLocals true --noUnusedParameters true",
"prepublishOnly": "npm run build && npm run build:wasm",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fralonra/ds-heightmap.git"
},
"keywords": [
"diamond-square",
"heightmap"
],
"author": "zoron (https://github.com/fralonra/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fralonra/ds-heightmap/issues"
},
"homepage": "https://github.com/fralonra/ds-heightmap#readme",
"devDependencies": {
"typescript": "^4.6.3"
}
}