-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 954 Bytes
/
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": "gen-biome",
"description": "Procedural generation of 2D maps with distinct biomes",
"version": "3.0.4",
"keywords": [
"map",
"generation",
"biome",
"tilemap",
"perlin",
"procedural",
"terrain",
"2d"
],
"license": "MIT",
"author": {
"name": "Nikita Galadiy",
"email": "[email protected]",
"url": "https://neki.guru/"
},
"main": "./dist/index.js",
"scripts": {
"watch": "webpack --mode development--name demo --watch",
"build": "webpack --mode production",
"build:demo": "webpack --mode production --name demo",
"lint": "eslint ./src --fix"
},
"devDependencies": {
"eslint": "8.57.0",
"@types/node": "20.10.5",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"typescript-eslint": "7.1.0",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neki-dev/gen-biome.git"
}
}