@rithien/comfy_adapter 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -0
- package/controller.js +453 -0
- package/dist/web/manifest.json +6 -0
- package/dist/web/static/comfy_adapter.1ca70d5b170a77bb6963.js +526 -0
- package/dist/web/static/info_js.9ad5f016be3454c1a255.js +22 -0
- package/dist/web/static/main.761df12d5815fb8e02fa.js +121 -0
- package/dist/web/static/package_json.b88ad27d58c1784bb20f.js +22 -0
- package/info.js +245 -0
- package/instance.js +303 -0
- package/package.json +33 -0
- package/web/index.jsx +10 -0
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rithien/comfy_adapter",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Clusterio plugin: parses Comfy/factorio-polska scenario stdout tags ([DISCORD*], [ANTIGRIEF-LOG], [DATA-SET/GET]) and bridges to Discord + JSON datastore",
|
|
5
|
+
"main": "info.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"prepare": "webpack-cli --env production"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"clusterio",
|
|
12
|
+
"clusterio-plugin",
|
|
13
|
+
"factorio",
|
|
14
|
+
"factorio-polska",
|
|
15
|
+
"discord",
|
|
16
|
+
"comfyfactorio"
|
|
17
|
+
],
|
|
18
|
+
"author": "rithien <jacek@zaluzje.bialystok.pl>",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"@clusterio/lib": "^2.0.0-alpha.14"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@clusterio/lib": "^2.0.0-alpha.14",
|
|
25
|
+
"@clusterio/web_ui": "^2.0.0-alpha.14",
|
|
26
|
+
"webpack": "^5.88.2",
|
|
27
|
+
"webpack-cli": "^5.1.4",
|
|
28
|
+
"webpack-merge": "^5.9.0"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
}
|
|
33
|
+
}
|
package/web/index.jsx
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// factorio-polska / comfy_adapter — web UI bundle (placeholder Faza 2.5).
|
|
3
|
+
//
|
|
4
|
+
// Plugin manifest jest eksportowany przez `./info.js` (zgodnie z webpack.config.js
|
|
5
|
+
// `exposes: { "./" : "./info.js" }`). Ten plik istnieje jako entry point webpack'a;
|
|
6
|
+
// faktyczne komponenty React per-instance panel (Faza 2.X: lista trusted, historia
|
|
7
|
+
// eventów anti-grief, ręczne /trust) zostaną dodane w kolejnych iteracjach.
|
|
8
|
+
//
|
|
9
|
+
// W obecnej fazie (2.5) plugin nie eksponuje żadnego web UI — clusterio admin panel
|
|
10
|
+
// pokazuje tylko config fields z info.js (controllerConfigFields).
|