-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 793 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 793 Bytes
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
{
"name": "settlemaker",
"version": "0.9.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",
"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",
"p-limit": "^6.0.0",
"pg": "^8.13.0",
"sharp": "^0.33.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"files": [
"dist",
"NOTICE"
]
}