@cotal-ai/lang 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 +10 -0
- package/package.json +15 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @cotal-ai/lang
|
|
2
|
+
|
|
3
|
+
Placeholder release reserving this package name.
|
|
4
|
+
|
|
5
|
+
`cotal-lang` is the restricted-JS workflow language used by [Cotal](https://github.com/Cotal-AI/Cotal):
|
|
6
|
+
the parser and validator, the effect interface, the step journal, the interpreter, and the
|
|
7
|
+
simulation handler.
|
|
8
|
+
|
|
9
|
+
The real package is published from the Cotal repository. See
|
|
10
|
+
[packages/lang](https://github.com/Cotal-AI/Cotal/tree/main/packages/lang).
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cotal-ai/lang",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Placeholder for cotal-lang, the restricted-JS workflow language. Reserves the name so GitHub Actions trusted publishing (OIDC) can be configured; the real package publishes from the Cotal repo.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/Cotal-AI/Cotal.git",
|
|
9
|
+
"directory": "packages/lang"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/Cotal-AI/Cotal/tree/main/packages/lang",
|
|
12
|
+
"keywords": ["cotal", "cotal-lang", "workflow", "language", "placeholder"],
|
|
13
|
+
"publishConfig": { "access": "public" },
|
|
14
|
+
"files": ["README.md"]
|
|
15
|
+
}
|