-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.03 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
{
"name": "settlemaker",
"version": "1.2.0",
"description": "Medieval fantasy settlement map generator — TypeScript port of watabou's Medieval Fantasy City Generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:lib": "esbuild src/index.ts --bundle --format=esm --target=es2022 --minify --outfile=dist/settlemaker.browser.js --banner:js=\"/* settlemaker — GPL-3.0-only. Corresponding source: https://github.com/barrulus/settlemaker */\"",
"test": "vitest run",
"test:watch": "vitest"
},
"license": "GPL-3.0-only",
"author": "Barry Gill <b@rry.im>",
"repository": {
"type": "git",
"url": "git+https://github.com/barrulus/settlemaker.git"
},
"homepage": "https://settlemaker.com",
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/pg": "^8.11.0",
"esbuild": "^0.25.0",
"p-limit": "^6.0.0",
"pg": "^8.13.0",
"sharp": "^0.33.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"files": [
"dist",
"NOTICE"
]
}