-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@danielv123/gridworld",
"version": "1.0.2",
"description": "Clusterio plugin for automatic creation of gridworlds connected using edge_transports",
"author": "Danielv <danielv@danielv.no>",
"homepage": "https://github.com/Danielv123/gridworld",
"license": "MIT",
"repository": "Danielv123/gridworld",
"scripts": {
"prepare": "webpack-cli --env production && husky install",
"cloc": "cloc --exclude-dir=node_modules,dist .",
"lint": "eslint \"*.js\" src web --fix",
"luacheck": "luacheck module/",
"test": "spaces-to-tabs -s 4 module/**.lua module/**/**.lua module/**/**/**.lua module/**/**/**/**.lua module/**/**/**/**/**.lua && npm run lint && npm run luacheck"
},
"bugs": {
"url": "https://github.com/Danielv123/gridworld/issues"
},
"files": [
"dist",
"module",
"src",
"index.js",
"instance.js",
"controller.js",
"messages.js",
"README.md",
"docs",
"images"
],
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@clusterio/lib": "^2.0.0-alpha.0",
"react-router-dom": "*"
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"fs-extra": "^8.1.0",
"sharp": "^0.29.3"
},
"devDependencies": {
"@clusterio/web_ui": "^2.0.0-alpha.0",
"@react-leaflet/core": "^2.1.0",
"@swc/core": "^1.4.0",
"antd": "^5.13.0",
"eslint": "^8.4.1",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.1",
"leaflet": "^1.7.1",
"leaflet-rastercoords": "^1.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"spaces-to-tabs": "^0.0.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
},
"publishConfig": {
"access": "public"
}
}