-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
37
38
39
40
41
42
43
{
"name": "gen-city",
"description": "Procedural generation city",
"version": "1.4.6",
"keywords": [
"map",
"generation",
"steet",
"tilemap",
"city",
"procedural",
"2d",
"random",
"town"
],
"license": "MIT",
"author": {
"name": "Nikita Galadiy",
"email": "dev@neki.guru",
"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/**/*.{ts,tsx}\" --ignore-path .gitignore --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"eslint": "8.57.0",
"eslint-plugin-import": "2.31.0",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neki-dev/gen-city.git"
}
}