@kici-dev/engine 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/engine
|
|
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
|
+
> Shared business logic for the KiCI CI/CD stack: protocol, triggers, state machine, and provider interfaces used by the Platform relay, orchestrator, and compiler.
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kici-dev/engine",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Shared business logic for the KiCI CI/CD stack: protocol, triggers, state machine, and provider interfaces used by the Platform relay, orchestrator, and compiler.",
|
|
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
|
+
}
|