@kici-dev/orchestrator 0.0.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 +6 -0
- package/index.js +3 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# @kici-dev/orchestrator
|
|
2
|
+
|
|
3
|
+
Stub published to reserve the name on npmjs.org. The real implementation
|
|
4
|
+
ships at v0.1.0+ — see <https://kici.dev>.
|
|
5
|
+
|
|
6
|
+
> Customer-deployable orchestrator for the KiCI CI/CD stack. Receives webhook events (direct or via Platform relay), matches triggers against the lock file, and dispatches jobs to connected agents.
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kici-dev/orchestrator",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Customer-deployable orchestrator for the KiCI CI/CD stack. Receives webhook events (direct or via Platform relay), matches triggers against the lock file, and dispatches jobs to connected agents.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"kici",
|
|
7
|
+
"ci",
|
|
8
|
+
"cd",
|
|
9
|
+
"ci-cd",
|
|
10
|
+
"typescript",
|
|
11
|
+
"workflows",
|
|
12
|
+
"devops"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://kici.dev",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "KiCI",
|
|
17
|
+
"email": "hello@kici.dev"
|
|
18
|
+
},
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"main": "index.js",
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public",
|
|
23
|
+
"registry": "https://registry.npmjs.org/"
|
|
24
|
+
}
|
|
25
|
+
}
|