@kici-dev/compiler 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/compiler
|
|
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
|
+
> Compiler and CLI for KiCI workflows. Compiles `.kici/workflows/*.ts` to a `kici.lock.json` file consumed by the orchestrator and agents, and runs workflows locally or against a remote orchestrator.
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kici-dev/compiler",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Compiler and CLI for KiCI workflows. Compiles `.kici/workflows/*.ts` to a `kici.lock.json` file consumed by the orchestrator and agents, and runs workflows locally or against a remote orchestrator.",
|
|
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
|
+
}
|