codebolt 1.12.0 → 1.12.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.
- package/dist/index.js +2187 -5851
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codebolt",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.1",
|
|
4
4
|
"description": "CodeBolt headless server CLI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,10 +13,12 @@
|
|
|
13
13
|
"!dist/**/*.map"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "webpack --config webpack.config.js",
|
|
16
|
+
"build": "npm run build:deps && webpack --config webpack.config.js",
|
|
17
|
+
"build:local": "webpack --config webpack.config.js",
|
|
17
18
|
"build:deps": "cd ../.. && npm run build -w @codebolt/types -w @codebolt/narrative -w @codebolt/gotui -w @arrowai/multillm -w @codebolt/server",
|
|
18
|
-
"package": "npm run build
|
|
19
|
+
"package": "npm run build",
|
|
19
20
|
"dev": "tsc && cross-env CODEBOLT_NARRATIVE_BINARY=../codeboltNarrative/target/debug/codebolt-narrative node dist/index.js",
|
|
21
|
+
"dev:rebuild": "npm run build -w @codebolt/gotui && npm run build -w @arrowai/multillm && npm run build -w @codebolt/server && tsc && cross-env CODEBOLT_NARRATIVE_BINARY=../codeboltNarrative/target/debug/codebolt-narrative node dist/index.js",
|
|
20
22
|
"start": "node dist/index.js",
|
|
21
23
|
"typecheck": "tsc --noEmit",
|
|
22
24
|
"prepublishOnly": "npm run package"
|
|
@@ -76,7 +78,6 @@
|
|
|
76
78
|
"gpt-tokenizer": "^3.4.0",
|
|
77
79
|
"grammy": "^1.40.0",
|
|
78
80
|
"groq-sdk": "^0.15.0",
|
|
79
|
-
"handlebars": "^4.7.8",
|
|
80
81
|
"ignore": "^5.3.2",
|
|
81
82
|
"isbinaryfile": "^5.0.7",
|
|
82
83
|
"joi": "^18.0.2",
|