-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
44
45
46
{
"name": "ctron_plugin",
"version": "0.0.1",
"description": "Proof-of-concept Clusterio plugin that displays per-instance counts of player-built roboports.",
"main": "dist/node/index.js",
"scripts": {
"prepare": "tsc --build ./tsconfig.node.json && webpack-cli --env production",
"watch": "tsc --build --watch",
"lint": "eslint \"*.ts\" \"web/**/*\" --fix"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@clusterio/controller": "^2.0.0-alpha.0",
"@clusterio/host": "^2.0.0-alpha.0",
"@clusterio/lib": "^2.0.0-alpha.22b",
"@clusterio/web_ui": "^2.0.0-alpha.22b"
},
"devDependencies": {
"@swc/core": "^1.5.24",
"@types/node": "^20.4.5",
"@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"antd": "^5.13.0",
"eslint": "^8.4.1",
"eslint-plugin-node": "^11.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.1",
"swc-loader": "^0.2.7",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"@sinclair/typebox": "^0.30.4"
},
"keywords": [
"clusterio",
"clusterio-plugin",
"factorio"
]
}