@pipelab/core-node 1.0.1-beta.23

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.
Files changed (50) hide show
  1. package/.turbo/turbo-build.log +75 -0
  2. package/CHANGELOG.md +291 -0
  3. package/LICENSE +110 -0
  4. package/LICENSE.md +110 -0
  5. package/README.md +10 -0
  6. package/dist/index.d.mts +344 -0
  7. package/dist/index.d.mts.map +1 -0
  8. package/dist/index.mjs +51852 -0
  9. package/dist/index.mjs.map +1 -0
  10. package/package.json +62 -0
  11. package/src/api.ts +115 -0
  12. package/src/config.ts +105 -0
  13. package/src/context.ts +53 -0
  14. package/src/handler-func.ts +234 -0
  15. package/src/handlers/agents.ts +32 -0
  16. package/src/handlers/auth.ts +95 -0
  17. package/src/handlers/build-history.ts +360 -0
  18. package/src/handlers/config.ts +109 -0
  19. package/src/handlers/engine.ts +229 -0
  20. package/src/handlers/fs.ts +97 -0
  21. package/src/handlers/history.ts +299 -0
  22. package/src/handlers/index.ts +41 -0
  23. package/src/handlers/shell.ts +57 -0
  24. package/src/handlers/system.ts +18 -0
  25. package/src/handlers.ts +2 -0
  26. package/src/heavy.ts +4 -0
  27. package/src/index.ts +16 -0
  28. package/src/ipc-core.ts +70 -0
  29. package/src/migrations.ts +72 -0
  30. package/src/paths.ts +1 -0
  31. package/src/plugins-registry.ts +62 -0
  32. package/src/presets/c3toSteam.ts +272 -0
  33. package/src/presets/demo.ts +123 -0
  34. package/src/presets/if.ts +69 -0
  35. package/src/presets/list.ts +30 -0
  36. package/src/presets/loop.ts +65 -0
  37. package/src/presets/moreToCome.ts +32 -0
  38. package/src/presets/newProject.ts +31 -0
  39. package/src/presets/preset.model.ts +0 -0
  40. package/src/presets/test-c3-offline.ts +78 -0
  41. package/src/presets/test-c3-unzip.ts +124 -0
  42. package/src/runner.ts +107 -0
  43. package/src/server.ts +80 -0
  44. package/src/types/runner.ts +101 -0
  45. package/src/utils/fs-extras.ts +182 -0
  46. package/src/utils/remote.ts +381 -0
  47. package/src/utils/storage.ts +99 -0
  48. package/src/utils.ts +258 -0
  49. package/src/websocket-server.ts +288 -0
  50. package/tsconfig.json +19 -0
@@ -0,0 +1,75 @@
1
+
2
+
3
+ > @pipelab/core-node@1.0.1-beta.21 build /run/media/armaldio/SSD/Projects/Pipelab/pipelab/packages/core-node
4
+ > tsdown
5
+
6
+ ℹ tsdown v0.21.2 powered by rolldown v1.0.0-rc.9
7
+ ℹ entry: src/index.ts
8
+ ℹ tsconfig: tsconfig.json
9
+ ℹ Build start
10
+ ℹ Cleaning 4 files
11
+ [rolldown-plugin-dts] Warning: Failed to emit declaration file. Please try to enable `eager` option (`dts.eager` for tsdown).
12
+ ℹ Hint: consider adding deps.onlyBundle option to avoid unintended bundling of dependencies, or set deps.onlyBundle: false to disable this hint.
13
+ See more at https://tsdown.dev/options/dependencies#deps-onlybundle
14
+ Detected dependencies in bundle:
15
+ - electron
16
+ - klona
17
+ - @vue/shared
18
+ - entities
19
+ - @babel/parser
20
+ - estree-walker
21
+ - source-map-js
22
+ - @vue/compiler-core
23
+ - @vue/compiler-dom
24
+ - @vue/reactivity
25
+ - @vue/runtime-core
26
+ - @vue/runtime-dom
27
+ - vue
28
+ - serve-handler
29
+ - concat-map
30
+ - balanced-match
31
+ - brace-expansion
32
+ - minimatch
33
+ - path-to-regexp
34
+ - mime-db
35
+ - mime-types
36
+ - bytes
37
+ - content-disposition
38
+ - path-is-inside
39
+ - range-parser
40
+ ℹ dist/index.mjs  1.89 MB
41
+ ℹ dist/index.mjs.map  3.14 MB
42
+ ℹ dist/index.d.mts.map 39.30 kB │ gzip: 12.86 kB
43
+ ℹ dist/index.d.mts 14.36 kB │ gzip: 3.75 kB
44
+ ℹ 4 files, total: 5.09 MB
45
+ src/api.d.ts (1:9) [MISSING_EXPORT] Warning: "PipelabApi" is not exported by "../../plugins/plugin-core/src/index.d.ts".
46
+ ╭─[ src/api.d.ts:1:10 ]
47
+ │
48
+ 1 │ import { PipelabApi } from "@pipelab/plugin-core";
49
+  │ ─────┬────
50
+  │ ╰────── Missing export
51
+  │
52
+  │ Note: If you meant to import a type rather than a value, make sure to add the `type` modifier (e.g. `import { type Foo } from '@pipelab/plugin-core'`).
53
+ ───╯
54
+
55
+ src/types/runner.d.ts (1:9) [MISSING_EXPORT] Warning: "BrowserWindow" is not exported by "../../node_modules/electron/electron.d.ts".
56
+ ╭─[ src/types/runner.d.ts:1:10 ]
57
+ │
58
+ 1 │ import { BrowserWindow } from "electron";
59
+  │ ──────┬──────
60
+  │ ╰──────── Missing export
61
+  │
62
+  │ Note: If you meant to import a type rather than a value, make sure to add the `type` modifier (e.g. `import { type Foo } from 'electron'`).
63
+ ───╯
64
+
65
+ src/types/runner.d.ts (2:9) [MISSING_EXPORT] Warning: "PipelabApi" is not exported by "../../plugins/plugin-core/src/index.d.ts".
66
+ ╭─[ src/types/runner.d.ts:2:10 ]
67
+ │
68
+ 2 │ import { PipelabApi } from "@pipelab/plugin-core";
69
+  │ ─────┬────
70
+  │ ╰────── Missing export
71
+  │
72
+  │ Note: If you meant to import a type rather than a value, make sure to add the `type` modifier (e.g. `import { type Foo } from '@pipelab/plugin-core'`).
73
+ ───╯
74
+
75
+ ✔ Build complete in 1723ms
package/CHANGELOG.md ADDED
@@ -0,0 +1,291 @@
1
+ # @pipelab/core-node
2
+
3
+ ## 1.0.1-beta.23
4
+
5
+ ### Patch Changes
6
+
7
+ - azs
8
+ - Updated dependencies
9
+ - @pipelab/constants@1.0.1-beta.19
10
+ - @pipelab/shared@2.0.1-beta.20
11
+
12
+ ## 1.0.1-beta.22
13
+
14
+ ### Patch Changes
15
+
16
+ - sqqd
17
+ - Updated dependencies
18
+ - @pipelab/constants@1.0.1-beta.18
19
+ - @pipelab/shared@2.0.1-beta.19
20
+
21
+ ## 1.0.1-beta.21
22
+
23
+ ### Patch Changes
24
+
25
+ - sd
26
+ - Updated dependencies
27
+ - @pipelab/constants@1.0.1-beta.17
28
+ - @pipelab/shared@2.0.1-beta.18
29
+
30
+ ## 1.0.1-beta.20
31
+
32
+ ### Patch Changes
33
+
34
+ - sd
35
+ - Updated dependencies
36
+ - @pipelab/constants@1.0.1-beta.16
37
+ - @pipelab/shared@2.0.1-beta.17
38
+
39
+ ## 1.0.1-beta.19
40
+
41
+ ### Patch Changes
42
+
43
+ - wdf
44
+ - Updated dependencies
45
+ - @pipelab/plugin-core@1.0.1-beta.15
46
+ - @pipelab/constants@1.0.1-beta.15
47
+ - @pipelab/shared@2.0.1-beta.16
48
+
49
+ ## 1.0.1-beta.18
50
+
51
+ ### Patch Changes
52
+
53
+ - sdf
54
+ - Updated dependencies
55
+ - @pipelab/plugin-core@1.0.1-beta.14
56
+ - @pipelab/constants@1.0.1-beta.14
57
+ - @pipelab/shared@2.0.1-beta.15
58
+
59
+ ## 1.0.1-beta.17
60
+
61
+ ### Patch Changes
62
+
63
+ - qs
64
+
65
+ ## 1.0.1-beta.16
66
+
67
+ ### Patch Changes
68
+
69
+ - fetching update
70
+
71
+ ## 1.0.1-beta.15
72
+
73
+ ### Patch Changes
74
+
75
+ - update
76
+ - Updated dependencies
77
+ - @pipelab/plugin-core@1.0.1-beta.13
78
+
79
+ ## 1.0.1-beta.14
80
+
81
+ ### Patch Changes
82
+
83
+ - sd
84
+ - Updated dependencies
85
+ - @pipelab/plugin-core@1.0.1-beta.12
86
+ - @pipelab/constants@1.0.1-beta.13
87
+ - @pipelab/shared@2.0.1-beta.14
88
+
89
+ ## 1.0.1-beta.13
90
+
91
+ ### Patch Changes
92
+
93
+ - rfg
94
+ - Updated dependencies
95
+ - @pipelab/plugin-core@1.0.1-beta.11
96
+ - @pipelab/constants@1.0.1-beta.12
97
+ - @pipelab/shared@2.0.1-beta.13
98
+
99
+ ## 1.0.1-beta.12
100
+
101
+ ### Patch Changes
102
+
103
+ - szd
104
+ - Updated dependencies
105
+ - @pipelab/plugin-core@1.0.1-beta.10
106
+ - @pipelab/constants@1.0.1-beta.11
107
+ - @pipelab/shared@2.0.1-beta.12
108
+
109
+ ## 1.0.1-beta.11
110
+
111
+ ### Patch Changes
112
+
113
+ - sd
114
+ - Updated dependencies
115
+ - @pipelab/plugin-core@1.0.1-beta.9
116
+ - @pipelab/constants@1.0.1-beta.10
117
+ - @pipelab/shared@2.0.1-beta.11
118
+
119
+ ## 1.0.1-beta.10
120
+
121
+ ### Patch Changes
122
+
123
+ - sd
124
+ - Updated dependencies
125
+ - @pipelab/plugin-core@1.0.1-beta.8
126
+ - @pipelab/constants@1.0.1-beta.9
127
+ - @pipelab/shared@2.0.1-beta.10
128
+
129
+ ## 1.0.1-beta.9
130
+
131
+ ### Patch Changes
132
+
133
+ - sd
134
+ - Updated dependencies
135
+ - @pipelab/plugin-core@1.0.1-beta.7
136
+ - @pipelab/constants@1.0.1-beta.8
137
+ - @pipelab/shared@2.0.1-beta.9
138
+
139
+ ## 1.0.1-beta.8
140
+
141
+ ### Patch Changes
142
+
143
+ - sd
144
+ - Updated dependencies
145
+ - @pipelab/plugin-core@1.0.1-beta.6
146
+ - @pipelab/constants@1.0.1-beta.7
147
+ - @pipelab/shared@2.0.1-beta.8
148
+
149
+ ## 1.0.1-beta.7
150
+
151
+ ### Patch Changes
152
+
153
+ - test
154
+ - Updated dependencies
155
+ - @pipelab/plugin-core@1.0.1-beta.5
156
+ - @pipelab/constants@1.0.1-beta.6
157
+ - @pipelab/shared@2.0.1-beta.7
158
+
159
+ ## 1.0.1-beta.6
160
+
161
+ ### Patch Changes
162
+
163
+ - test
164
+ - Updated dependencies
165
+ - @pipelab/plugin-core@1.0.1-beta.4
166
+ - @pipelab/constants@1.0.1-beta.5
167
+ - @pipelab/shared@2.0.1-beta.6
168
+
169
+ ## 1.0.1-beta.5
170
+
171
+ ### Patch Changes
172
+
173
+ - sd
174
+ - Updated dependencies
175
+ - @pipelab/plugin-core@1.0.1-beta.3
176
+ - @pipelab/constants@1.0.1-beta.4
177
+ - @pipelab/shared@2.0.1-beta.5
178
+ - @pipelab/plugin-construct@1.0.1-beta.0
179
+ - @pipelab/plugin-discord@1.0.1-beta.0
180
+ - @pipelab/plugin-electron@1.0.1-beta.0
181
+ - @pipelab/plugin-filesystem@1.0.1-beta.0
182
+ - @pipelab/plugin-itch@1.0.1-beta.0
183
+ - @pipelab/plugin-netlify@1.0.1-beta.0
184
+ - @pipelab/plugin-nvpatch@1.0.1-beta.0
185
+ - @pipelab/plugin-poki@1.0.1-beta.0
186
+ - @pipelab/plugin-steam@1.0.1-beta.0
187
+ - @pipelab/plugin-system@1.0.1-beta.0
188
+ - @pipelab/plugin-tauri@1.0.1-beta.0
189
+
190
+ ## 1.0.1-beta.4
191
+
192
+ ### Patch Changes
193
+
194
+ - tesyt
195
+ - Updated dependencies
196
+ - @pipelab/plugin-core@1.0.1-beta.2
197
+ - @pipelab/constants@1.0.1-beta.3
198
+ - @pipelab/shared@2.0.1-beta.4
199
+ - @pipelab/plugin-construct@1.0.1-beta.0
200
+ - @pipelab/plugin-discord@1.0.1-beta.0
201
+ - @pipelab/plugin-electron@1.0.1-beta.0
202
+ - @pipelab/plugin-filesystem@1.0.1-beta.0
203
+ - @pipelab/plugin-itch@1.0.1-beta.0
204
+ - @pipelab/plugin-netlify@1.0.1-beta.0
205
+ - @pipelab/plugin-nvpatch@1.0.1-beta.0
206
+ - @pipelab/plugin-poki@1.0.1-beta.0
207
+ - @pipelab/plugin-steam@1.0.1-beta.0
208
+ - @pipelab/plugin-system@1.0.1-beta.0
209
+ - @pipelab/plugin-tauri@1.0.1-beta.0
210
+
211
+ ## 1.0.1-beta.3
212
+
213
+ ### Patch Changes
214
+
215
+ - last test
216
+ - Updated dependencies
217
+ - @pipelab/plugin-core@1.0.1-beta.1
218
+ - @pipelab/constants@1.0.1-beta.2
219
+ - @pipelab/shared@2.0.1-beta.3
220
+ - @pipelab/plugin-construct@1.0.1-beta.0
221
+ - @pipelab/plugin-discord@1.0.1-beta.0
222
+ - @pipelab/plugin-electron@1.0.1-beta.0
223
+ - @pipelab/plugin-filesystem@1.0.1-beta.0
224
+ - @pipelab/plugin-itch@1.0.1-beta.0
225
+ - @pipelab/plugin-netlify@1.0.1-beta.0
226
+ - @pipelab/plugin-nvpatch@1.0.1-beta.0
227
+ - @pipelab/plugin-poki@1.0.1-beta.0
228
+ - @pipelab/plugin-steam@1.0.1-beta.0
229
+ - @pipelab/plugin-system@1.0.1-beta.0
230
+ - @pipelab/plugin-tauri@1.0.1-beta.0
231
+
232
+ ## 1.0.1-beta.2
233
+
234
+ ### Patch Changes
235
+
236
+ - Updated dependencies
237
+ - @pipelab/shared@2.0.1-beta.2
238
+ - @pipelab/plugin-core@1.0.1-beta.0
239
+ - @pipelab/plugin-discord@1.0.1-beta.0
240
+ - @pipelab/plugin-electron@1.0.1-beta.0
241
+ - @pipelab/plugin-tauri@1.0.1-beta.0
242
+ - @pipelab/plugin-construct@1.0.1-beta.0
243
+ - @pipelab/plugin-filesystem@1.0.1-beta.0
244
+ - @pipelab/plugin-itch@1.0.1-beta.0
245
+ - @pipelab/plugin-netlify@1.0.1-beta.0
246
+ - @pipelab/plugin-nvpatch@1.0.1-beta.0
247
+ - @pipelab/plugin-poki@1.0.1-beta.0
248
+ - @pipelab/plugin-steam@1.0.1-beta.0
249
+ - @pipelab/plugin-system@1.0.1-beta.0
250
+
251
+ ## 1.0.1-beta.1
252
+
253
+ ### Patch Changes
254
+
255
+ - 9268b1e: test 3
256
+ - Updated dependencies [9268b1e]
257
+ - @pipelab/constants@1.0.1-beta.1
258
+ - @pipelab/shared@2.0.1-beta.1
259
+ - @pipelab/plugin-core@1.0.1-beta.0
260
+ - @pipelab/plugin-electron@1.0.1-beta.0
261
+ - @pipelab/plugin-tauri@1.0.1-beta.0
262
+ - @pipelab/plugin-construct@1.0.1-beta.0
263
+ - @pipelab/plugin-discord@1.0.1-beta.0
264
+ - @pipelab/plugin-filesystem@1.0.1-beta.0
265
+ - @pipelab/plugin-itch@1.0.1-beta.0
266
+ - @pipelab/plugin-netlify@1.0.1-beta.0
267
+ - @pipelab/plugin-nvpatch@1.0.1-beta.0
268
+ - @pipelab/plugin-poki@1.0.1-beta.0
269
+ - @pipelab/plugin-steam@1.0.1-beta.0
270
+ - @pipelab/plugin-system@1.0.1-beta.0
271
+
272
+ ## 1.0.1-beta.0
273
+
274
+ ### Patch Changes
275
+
276
+ - test
277
+ - Updated dependencies
278
+ - @pipelab/plugin-filesystem@1.0.1-beta.0
279
+ - @pipelab/plugin-construct@1.0.1-beta.0
280
+ - @pipelab/plugin-electron@1.0.1-beta.0
281
+ - @pipelab/plugin-discord@1.0.1-beta.0
282
+ - @pipelab/plugin-netlify@1.0.1-beta.0
283
+ - @pipelab/plugin-nvpatch@1.0.1-beta.0
284
+ - @pipelab/plugin-system@1.0.1-beta.0
285
+ - @pipelab/plugin-steam@1.0.1-beta.0
286
+ - @pipelab/plugin-tauri@1.0.1-beta.0
287
+ - @pipelab/plugin-core@1.0.1-beta.0
288
+ - @pipelab/plugin-itch@1.0.1-beta.0
289
+ - @pipelab/plugin-poki@1.0.1-beta.0
290
+ - @pipelab/constants@1.0.1-beta.0
291
+ - @pipelab/shared@2.0.1-beta.0
package/LICENSE ADDED
@@ -0,0 +1,110 @@
1
+ # Functional Source License, Version 1.1, MIT Future License
2
+
3
+ ## Abbreviation
4
+
5
+ FSL-1.1-MIT
6
+
7
+ ## Notice
8
+
9
+ Copyright 2026 CynToolkit
10
+
11
+ ## Terms and Conditions
12
+
13
+ ### Licensor ("We")
14
+
15
+ The party offering the Software under these Terms and Conditions.
16
+
17
+ ### The Software
18
+
19
+ The "Software" is each version of the software that we make available under
20
+ these Terms and Conditions, as indicated by our inclusion of these Terms and
21
+ Conditions with the Software.
22
+
23
+ ### License Grant
24
+
25
+ Subject to your compliance with this License Grant and the Patents,
26
+ Redistribution and Trademark clauses below, we hereby grant you the right to
27
+ use, copy, modify, create derivative works, publicly perform, publicly display
28
+ and redistribute the Software for any Permitted Purpose identified below.
29
+
30
+ ### Permitted Purpose
31
+
32
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
33
+ means making the Software available to others in a commercial product or
34
+ service that:
35
+
36
+ 1. substitutes for the Software;
37
+
38
+ 2. substitutes for any other product or service we offer using the Software
39
+ that exists as of the date we make the Software available; or
40
+
41
+ 3. offers the same or substantially similar functionality as the Software.
42
+
43
+ Permitted Purposes specifically include using the Software:
44
+
45
+ 1. for your internal use and access;
46
+
47
+ 2. for non-commercial education;
48
+
49
+ 3. for non-commercial research; and
50
+
51
+ 4. in connection with professional services that you provide to a licensee
52
+ using the Software in accordance with these Terms and Conditions.
53
+
54
+ ### Patents
55
+
56
+ To the extent your use for a Permitted Purpose would necessarily infringe our
57
+ patents, the license grant above includes a license under our patents. If you
58
+ make a claim against any party that the Software infringes or contributes to
59
+ the infringement of any patent, then your patent license to the Software ends
60
+ immediately.
61
+
62
+ ### Redistribution
63
+
64
+ The Terms and Conditions apply to all copies, modifications and derivatives of
65
+ the Software.
66
+
67
+ If you redistribute any copies, modifications or derivatives of the Software,
68
+ you must include a copy of or a link to these Terms and Conditions and not
69
+ remove any copyright notices provided in or with the Software.
70
+
71
+ ### Disclaimer
72
+
73
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
74
+ IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
75
+ PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
76
+
77
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
78
+ SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
79
+ EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
80
+
81
+ ### Trademarks
82
+
83
+ Except for displaying the License Details and identifying us as the origin of
84
+ the Software, you have no right under these Terms and Conditions to use our
85
+ trademarks, trade names, service marks or product names.
86
+
87
+ ## Grant of Future License
88
+
89
+ We hereby irrevocably grant you an additional license to use the Software under
90
+ the MIT license that is effective on the second anniversary of the date we make
91
+ the Software available. On or after that date, you may use the Software under
92
+ the MIT license, in which case the following will apply:
93
+
94
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
95
+ this software and associated documentation files (the "Software"), to deal in
96
+ the Software without restriction, including without limitation the rights to
97
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
98
+ of the Software, and to permit persons to whom the Software is furnished to do
99
+ so, subject to the following conditions:
100
+
101
+ The above copyright notice and this permission notice shall be included in all
102
+ copies or substantial portions of the Software.
103
+
104
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
105
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
106
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
107
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
108
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
109
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
110
+ SOFTWARE.
package/LICENSE.md ADDED
@@ -0,0 +1,110 @@
1
+ # Functional Source License, Version 1.1, MIT Future License
2
+
3
+ ## Abbreviation
4
+
5
+ FSL-1.1-MIT
6
+
7
+ ## Notice
8
+
9
+ Copyright 2024-present Quentin Goinaud - Armaldio
10
+
11
+ ## Terms and Conditions
12
+
13
+ ### Licensor ("We")
14
+
15
+ The party offering the Software under these Terms and Conditions.
16
+
17
+ ### The Software
18
+
19
+ The "Software" is each version of the software that we make available under
20
+ these Terms and Conditions, as indicated by our inclusion of these Terms and
21
+ Conditions with the Software.
22
+
23
+ ### License Grant
24
+
25
+ Subject to your compliance with this License Grant and the Patents,
26
+ Redistribution and Trademark clauses below, we hereby grant you the right to
27
+ use, copy, modify, create derivative works, publicly perform, publicly display
28
+ and redistribute the Software for any Permitted Purpose identified below.
29
+
30
+ ### Permitted Purpose
31
+
32
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
33
+ means making the Software available to others in a commercial product or
34
+ service that:
35
+
36
+ 1. substitutes for the Software;
37
+
38
+ 2. substitutes for any other product or service we offer using the Software
39
+ that exists as of the date we make the Software available; or
40
+
41
+ 3. offers the same or substantially similar functionality as the Software.
42
+
43
+ Permitted Purposes specifically include using the Software:
44
+
45
+ 1. for your internal use and access;
46
+
47
+ 2. for non-commercial education;
48
+
49
+ 3. for non-commercial research; and
50
+
51
+ 4. in connection with professional services that you provide to a licensee
52
+ using the Software in accordance with these Terms and Conditions.
53
+
54
+ ### Patents
55
+
56
+ To the extent your use for a Permitted Purpose would necessarily infringe our
57
+ patents, the license grant above includes a license under our patents. If you
58
+ make a claim against any party that the Software infringes or contributes to
59
+ the infringement of any patent, then your patent license to the Software ends
60
+ immediately.
61
+
62
+ ### Redistribution
63
+
64
+ The Terms and Conditions apply to all copies, modifications and derivatives of
65
+ the Software.
66
+
67
+ If you redistribute any copies, modifications or derivatives of the Software,
68
+ you must include a copy of or a link to these Terms and Conditions and not
69
+ remove any copyright notices provided in or with the Software.
70
+
71
+ ### Disclaimer
72
+
73
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
74
+ IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
75
+ PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
76
+
77
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
78
+ SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
79
+ EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
80
+
81
+ ### Trademarks
82
+
83
+ Except for displaying the License Details and identifying us as the origin of
84
+ the Software, you have no right under these Terms and Conditions to use our
85
+ trademarks, trade names, service marks or product names.
86
+
87
+ ## Grant of Future License
88
+
89
+ We hereby irrevocably grant you an additional license to use the Software under
90
+ the MIT license that is effective on the second anniversary of the date we make
91
+ the Software available. On or after that date, you may use the Software under
92
+ the MIT license, in which case the following will apply:
93
+
94
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
95
+ this software and associated documentation files (the "Software"), to deal in
96
+ the Software without restriction, including without limitation the rights to
97
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
98
+ of the Software, and to permit persons to whom the Software is furnished to do
99
+ so, subject to the following conditions:
100
+
101
+ The above copyright notice and this permission notice shall be included in all
102
+ copies or substantial portions of the Software.
103
+
104
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
105
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
106
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
107
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
108
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
109
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
110
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # @pipelab/core-node
2
+
3
+ The backend execution engine for Pipelab.
4
+
5
+ ## Responsibilities
6
+
7
+ - **Graph Execution**: Handles the logic for running automation pipelines.
8
+ - **WebSocket Server**: Real-time communication between UI and backend.
9
+ - **Environment Management**: Ensures required runtimes (like Node.js) are available.
10
+ - **System Integration**: File system utilities, terminal emulation (PTY), and build history management.