@chatbotkit/cli 1.26.0 → 1.26.1

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.
Files changed (1) hide show
  1. package/package.json +24 -26
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatbotkit/cli",
3
- "version": "1.26.0",
3
+ "version": "1.26.1",
4
4
  "description": "ChatBotKit command line tools",
5
5
  "license": "ISC",
6
6
  "engines": {
@@ -537,6 +537,27 @@
537
537
  },
538
538
  "./package.json": "./package.json"
539
539
  },
540
+ "types": "./dist/cjs/index.d.ts",
541
+ "dependencies": {
542
+ "commander": "^11.1.0",
543
+ "dotenv": "^16.4.5",
544
+ "js-yaml": "^4.1.0",
545
+ "tslib": "^2.6.2",
546
+ "zod": "^3.25.76",
547
+ "@chatbotkit/agent": "1.26.1",
548
+ "@chatbotkit/sdk": "1.26.1"
549
+ },
550
+ "devDependencies": {
551
+ "@types/js-yaml": "^4.0.9",
552
+ "npm-run-all": "^4.1.5",
553
+ "typedoc": "^0.28.14",
554
+ "typedoc-plugin-markdown": "^4.9.0",
555
+ "typedoc-plugin-mdn-links": "^5.0.10",
556
+ "typescript": "^5.9"
557
+ },
558
+ "files": [
559
+ "dist/**"
560
+ ],
540
561
  "scripts": {
541
562
  "build": "run-s build:*",
542
563
  "build:01-cjs": "tsc -p tsconfig.cjs.json",
@@ -557,29 +578,6 @@
557
578
  "clean:types": "rimraf types",
558
579
  "dev": "node bin/cbk.js",
559
580
  "lint": "eslint .",
560
- "postpack": "node ../../scripts/create-standard-exports.js",
561
- "prepack": "node ../../scripts/create-dist-exports.js",
562
581
  "test": "true"
563
- },
564
- "types": "./dist/cjs/index.d.ts",
565
- "dependencies": {
566
- "@chatbotkit/agent": "workspace:*",
567
- "@chatbotkit/sdk": "workspace:*",
568
- "commander": "^11.1.0",
569
- "dotenv": "^16.4.5",
570
- "js-yaml": "^4.1.0",
571
- "tslib": "^2.6.2",
572
- "zod": "^3.25.76"
573
- },
574
- "devDependencies": {
575
- "@types/js-yaml": "^4.0.9",
576
- "npm-run-all": "^4.1.5",
577
- "typedoc": "^0.28.14",
578
- "typedoc-plugin-markdown": "^4.9.0",
579
- "typedoc-plugin-mdn-links": "^5.0.10",
580
- "typescript": "^5.9"
581
- },
582
- "files": [
583
- "dist/**"
584
- ]
585
- }
582
+ }
583
+ }