@aggroot-team/aggroot 1.7.2 → 1.7.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aggroot-team/aggroot",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.3",
|
|
4
4
|
"description": "AggRoot - AI Assistant (Node.js/TypeScript Version)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json && node scripts/obfuscate.mjs && node scripts/verify-no-source.mjs && cd packages/web && npx vite build && cd ../..",
|
|
48
48
|
"build:all": "node scripts/build-all.mjs",
|
|
49
49
|
"build:dev": "tsc",
|
|
50
|
-
"prepack": "npm run build && cd packages/web && npx vite build && cd ../.. && node -e \"const{mkdirSync,readdirSync,copyFileSync,existsSync}=require('fs');const{join}=require('path');function cpR(s,d){mkdirSync(d,{recursive:true});for(const f of readdirSync(s)){const sp=join(s,f),dp=join(d,f);const st=require('fs').statSync(sp);st.isDirectory()?cpR(sp,dp):copyFileSync(sp,dp)}if(!existsSync('share/web'))mkdirSync('share/web',{recursive:true})}if(existsSync('packages/web/dist'))cpR(join('packages','web','dist'),join('share','web','dist'))\"",
|
|
50
|
+
"prepack": "npm run build && cd packages/web && npx vite build && cd ../.. && node scripts/fix-workspace-deps.mjs && node -e \"const{mkdirSync,readdirSync,copyFileSync,existsSync}=require('fs');const{join}=require('path');function cpR(s,d){mkdirSync(d,{recursive:true});for(const f of readdirSync(s)){const sp=join(s,f),dp=join(d,f);const st=require('fs').statSync(sp);st.isDirectory()?cpR(sp,dp):copyFileSync(sp,dp)}if(!existsSync('share/web'))mkdirSync('share/web',{recursive:true})}if(existsSync('packages/web/dist'))cpR(join('packages','web','dist'),join('share','web','dist'))\"",
|
|
51
51
|
"start": "node --no-warnings --max-old-space-size=4096 dist/index.cjs",
|
|
52
52
|
"type-check": "tsc --noEmit",
|
|
53
53
|
"lint": "eslint .",
|
|
@@ -65,7 +65,6 @@
|
|
|
65
65
|
"install:all": "npm install && npm run rebuild-native"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@aggroot-team/server": "workspace:*",
|
|
69
68
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
70
69
|
"@sqlite.org/sqlite-wasm": "3.53.0-build1",
|
|
71
70
|
"@vscode/ripgrep": "^1.17.1",
|
|
@@ -15,7 +15,7 @@ import { readFileSync, writeFileSync } from "node:fs";
|
|
|
15
15
|
const rootPkg = JSON.parse(readFileSync("package.json", "utf8"));
|
|
16
16
|
|
|
17
17
|
// Packages that are statically imported → esbuild bundles them → remove from deps
|
|
18
|
-
const BUNDLED_WORKSPACE_PKGS = ["@aggroot/server"];
|
|
18
|
+
const BUNDLED_WORKSPACE_PKGS = ["@aggroot-team/server"];
|
|
19
19
|
|
|
20
20
|
function fixDeps(deps) {
|
|
21
21
|
if (!deps) return;
|