graphai 0.6.21 → 0.6.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.
- package/lib/bundle.cjs.js +1 -1
- package/lib/bundle.cjs.js.map +1 -1
- package/lib/bundle.esm.js +7 -1
- package/lib/bundle.esm.js.map +1 -1
- package/lib/bundle.umd.js +1 -1
- package/lib/bundle.umd.js.map +1 -1
- package/lib/graphai.d.ts +4 -2
- package/lib/graphai.js +6 -0
- package/lib/index.d.ts +1 -1
- package/lib/node.js +1 -1
- package/lib/type.d.ts +3 -2
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphai",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.23",
|
|
4
4
|
"description": "Asynchronous data flow execution engine for agentic AI apps.",
|
|
5
5
|
"main": "lib/bundle.cjs.js",
|
|
6
6
|
"module": "lib/bundle.esm.js",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "rm -r lib/* && tsc && npx rollup -c && tsc-alias",
|
|
13
13
|
"eslint": "eslint",
|
|
14
|
-
"
|
|
14
|
+
"typedoc": "npx typedoc src/index.ts --out ../../docs/apiDoc",
|
|
15
|
+
"doc": "echo nothing",
|
|
15
16
|
"format": "prettier --write '{src,tests,samples}/**/*.ts' *.mjs",
|
|
16
17
|
"test": "node --test -r tsconfig-paths/register --require ts-node/register ./tests/**/test_*.ts",
|
|
17
18
|
"b": "yarn run format && yarn run eslint && yarn run build"
|