@kirha/planner 0.1.5 → 0.1.8
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/dist/index.cjs +857 -0
- package/dist/index.js +126 -20376
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kirha/planner",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "SDK for tool-planning agents - generate and execute DAG execution plans from natural language",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "./dist/index.cjs",
|
|
7
8
|
"module": "./dist/index.js",
|
|
8
9
|
"types": "./dist/index.d.ts",
|
|
9
10
|
"exports": {
|
|
10
11
|
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
11
13
|
"import": "./dist/index.js",
|
|
12
|
-
"
|
|
14
|
+
"require": "./dist/index.cjs"
|
|
13
15
|
}
|
|
14
16
|
},
|
|
15
17
|
"files": [
|
|
@@ -17,8 +19,7 @@
|
|
|
17
19
|
"README.md"
|
|
18
20
|
],
|
|
19
21
|
"scripts": {
|
|
20
|
-
"build": "bun build ./src/index.ts --outdir ./dist --target node && bun
|
|
21
|
-
"build:types": "tsc --project tsconfig.build.json",
|
|
22
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target node --packages external && bun build ./src/index.ts --target node --packages external --format cjs --outfile ./dist/index.cjs && tsc --project tsconfig.build.json",
|
|
22
23
|
"test": "bun test",
|
|
23
24
|
"lint": "biome check --write",
|
|
24
25
|
"prepublishOnly": "bun run build"
|