-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
300 lines (300 loc) · 11.5 KB
/
Copy pathpackage.json
File metadata and controls
300 lines (300 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
{
"name": "xpert.ai",
"version": "3.0",
"description": "",
"license": "AGPL-3.0",
"homepage": "https://xpertai.cn",
"repository": {
"type": "git",
"url": "https://github.com/xpert-ai/xpert.git"
},
"bugs": {
"url": "https://github.com/xpert-ai/xpert/issues"
},
"private": true,
"author": {
"name": "XpertAI Co. LTD",
"email": "service@xpertai.cn",
"url": "https://xpertai.cn"
},
"keywords": [
"Xpert",
"AI",
"Agent",
"Copilot",
"BI"
],
"scripts": {
"start": "concurrently \"pnpm start:api\" \"pnpm start:cloud\"",
"backend": "pnpm run start:api:dev",
"frontend": "pnpm run start:cloud",
"start:cloud": "pnpm run theme:check-hardcoded-colors && cross-env NODE_ENV=development NODE_OPTIONS=--max-old-space-size=12288 node tools/scripts/start-cloud.mjs",
"start:analytics": "pnpm -C ./packages/analytics start",
"start:angular": "nx serve --project ng --port 4400",
"start:nest": "nx serve --project nest",
"start:olap": "pnpm -C ./packages/olap start",
"start:api": "pnpm b:p:all && pnpm nx serve api",
"start:api:dev": "nodemon",
"start:api:debug": "nodemon --config nodemon-debug.json",
"start:analytics:debug": "pnpm -C ./packages/analytics start:debug",
"start:docs": "pnpm -C ./docs dev",
"plugin:install:local": "node tools/scripts/install-local-plugin.mjs",
"plugin:reinstall:local": "node tools/scripts/reinstall-local-plugin.mjs",
"debug:olap": "pnpm -C ./packages/olap debug",
"format:fix": "prettier --write --ignore-unknown",
"prepare": "command -v git >/dev/null 2>&1 && git config core.hooksPath git-hooks || exit 0",
"prebuild": "rimraf dist coverage",
"build:plugins": "pnpm nx build agent-middlewares && pnpm nx build integration-slack && pnpm nx build retriever-common && pnpm nx build textsplitter-common && pnpm nx build transformer-common && pnpm nx build trigger-schedule && pnpm nx build vlm-default && pnpm nx build draft",
"build": "pnpm nx build store && pnpm nx build core && pnpm nx build echarts && pnpm nx build sql && pnpm nx build xmla && pnpm -C ./packages/duckdb build:release && pnpm nx build duckdb && pnpm b:p:copilot && pnpm b:p:angular",
"b:p:duckdb": "pnpm -C ./packages/duckdb build:release && pnpm nx build duckdb",
"b:p:contracts": "pnpm nx build contracts",
"b:p:common": "pnpm nx build common",
"b:p:config": "pnpm nx build config",
"b:p:copilot": "pnpm nx build copilot",
"b:p:auth": "pnpm nx build auth",
"b:p:server": "pnpm nx build server",
"b:p:server-ai": "pnpm nx build server-ai",
"b:p:adapter": "pnpm nx build adapter",
"b:p:analytics": "pnpm nx build analytics",
"b:p:angular:scss": "npx sass --load-path=node_modules --load-path=. ./packages/angular/_index.scss ./dist/packages/angular/_index.css",
"b:p:angular:tw": "pnpm b:p:angular:scss && pnpm -C ./packages/angular exec tailwindcss --input ./tailwind.input.css --output ../../dist/packages/angular/index.css --minify",
"b:p:angular": "pnpm nx run ocap-angular:build && pnpm b:p:angular:tw",
"b:p:olap": "pnpm -C ./packages/olap build",
"b:p:all": "pnpm nx build contracts && pnpm nx build common && pnpm nx build config && pnpm nx build auth && pnpm nx build server && pnpm nx build server-ai && pnpm nx build adapter && pnpm nx build analytics && pnpm build:plugins",
"localpack": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=12288 node tools/scripts/build.mjs",
"seed:module": "cross-env NODE_ENV=development NODE_OPTIONS=--max_old_space_size=7000 pnpm ts-node -r tsconfig-paths/register --project apps/api/tsconfig.app.json ./apps/api/src/seed-module.ts --name",
"bootstrap": "pnpm install && pnpm nx build server && pnpm nx build plugin-sdk",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm install --lockfile-only --ignore-scripts",
"lockfile:update": "pnpm install --lockfile-only --ignore-scripts",
"lockfile:check": "pnpm install --lockfile-only --frozen-lockfile --ignore-scripts",
"check:typeorm-columns": "node tools/scripts/check-typeorm-column-types.cjs",
"release:publish": "node tools/release/publish-npm-packages.mjs",
"b:docs": "concurrently \"pnpm -C ./packages/store docs\" \"pnpm -C ./packages/core docs\" \"pnpm -C ./packages/xmla docs\" \"pnpm -C ./packages/sql docs\" \"pnpm -C ./packages/echarts docs\" \"pnpm -C ./packages/duckdb docs\" \"pnpm -C ./legacies/copilot docs\"",
"b:stats": "pnpm nx build cloud --stats-json",
"analyze": "webpack-bundle-analyzer dist/apps/cloud/stats.json",
"show": "pnpm nx show project cloud --web",
"theme:check-hardcoded-colors": "node tools/scripts/check-hardcoded-colors.cjs",
"theme:check-legacy-colors": "node tools/scripts/check-legacy-colors.cjs",
"theme:update-legacy-colors-baseline": "node tools/scripts/check-legacy-colors.cjs --write-baseline",
"tw:workspace:check-reference": "node tools/scripts/check-tailwind-reference-workspace.cjs",
"tw:cloud:check-reference": "node tools/scripts/check-tailwind-reference-cloud.cjs",
"tw:workspace:check-reference:monorepo": "node tools/scripts/check-tailwind-reference-workspace-monorepo.cjs"
},
"dependencies": {
"@a2ui/lit": "0.8.3",
"@angular/animations": "21.1.4",
"@angular/cdk": "21.1.4",
"@angular/common": "21.1.4",
"@angular/compiler": "21.1.4",
"@angular/core": "21.1.4",
"@angular/elements": "21.1.4",
"@angular/forms": "21.1.4",
"@angular/platform-browser": "21.1.4",
"@angular/platform-browser-dynamic": "21.1.4",
"@angular/router": "21.1.4",
"@angular/service-worker": "21.1.4",
"@antv/g2": "^4.1.34",
"@antv/g2plot": "^2.3.40",
"@casl/ability": "^5.4.3",
"@casl/angular": "^9.0.6",
"@ctrl/ngx-emoji-mart": "^9.2.0",
"@dagrejs/dagre": "^1.1.4",
"@datorama/akita": "^6.2.3",
"@duckdb/duckdb-wasm": "1.25.0",
"@emoji-mart/data": "^1.2.1",
"@floating-ui/dom": "^1.6.11",
"@langchain/community": "0.3.53",
"@langchain/core": "0.3.72",
"@langchain/langgraph": "0.4.7",
"@langchain/ollama": "0.2.3",
"@langchain/openai": "0.6.9",
"@microsoft/fetch-event-source": "^2.0.1",
"@ng-web-apis/common": "^4.11.1",
"@ng-web-apis/intersection-observer": "^4.11.1",
"@ng-web-apis/resize-observer": "^4.11.1",
"@ngneat/content-loader": "^7.0.0",
"@ngneat/elf": "^2.5.1",
"@ngneat/elf-entities": "^5.0.1",
"@ngneat/elf-state-history": "^1.4.0",
"@ngneat/falso": "^2.27.0",
"@ngrx/component-store": "21.0.1",
"@ngrx/entity": "21.0.1",
"@ngrx/store": "21.0.1",
"@ngx-formly/core": "^6.0.0",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"@sentry/angular": "^10.38.0",
"@swc/helpers": "0.5.3",
"@tinymce/tinymce-angular": "^6.0.1",
"angular-gridster2": "^21.0.1",
"apache-arrow": "^9.0.0",
"axios": "1.6.8",
"clickhouse": "^2.5.0",
"clipboard": "^2.0.11",
"css-element-queries": "^1.2.3",
"d3-geo": "3.0.1",
"d3-geo-projection": "^4.0.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"date-fns": "^3.0.4",
"echarts": "5.5.0",
"echarts-gl": "^2.0.9",
"elkjs": "^0.9.3",
"emoji-mart": "^5.6.0",
"expr-eval": "^2.0.2",
"hammerjs": "2.0.8",
"hive-driver": "^0.1.7",
"idb-keyval": "^6.2.1",
"immer": "^10.0.1",
"json5": "^2.2.3",
"katex": "^0.16.11",
"langchain": "0.3.31",
"lato-font": "^3.0.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mammoth": "^1.11.0",
"marked": "^17.0.2",
"marked-katex-extension": "^5.0.1",
"mermaid": "^11.12.3",
"monaco-editor": "^0.28.1",
"money-clip": "^3.0.5",
"nanoid": "^3.3.4",
"nestjs-pino": "^4.6.0",
"ngx-cookie-service": "^21.1.0",
"ngx-float-ui": "^21.0.1",
"ngx-logger": "^5.0.12",
"ngx-markdown": "^21.1.0",
"ngx-monaco-editor": "^12.0.0",
"ngx-permissions": "^13.0.1",
"ngxtension": "^4.0.0",
"noto-serif-sc": "^8.0.0",
"ollama": "^0.5.6",
"passport-dingtalk2": "^2.1.1",
"pg": "^8.7.3",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"pkginfo": "^0.4.1",
"presto-client": "^0.12.2",
"prismjs": "^1.29.0",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reflect-metadata": "^0.1.13",
"remixicon": "^4.5.0",
"rxjs": "~7.8.0",
"short-unique-id": "^4.4.4",
"socket.io": "^4.4.1",
"socket.io-client": "^4.7.5",
"sql-formatter": "^4.0.2",
"swiper": "^8.0.7",
"timers": "^0.1.1",
"tinymce": "^6.0.0",
"topojson-client": "^3.1.0",
"tslib": "^2.3.0",
"uuid": "^10.0.0",
"web-streams-polyfill": "^4.2.0",
"xlsx": "^0.18.5",
"xmldom": "^0.6.0",
"yaml": "^2.6.1",
"zod": "3.25.67",
"zone.js": "~0.16.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.1.4",
"@angular-devkit/core": "21.1.4",
"@angular-devkit/schematics": "21.1.4",
"@angular-eslint/eslint-plugin": "21.2.0",
"@angular-eslint/eslint-plugin-template": "21.2.0",
"@angular-eslint/template-parser": "21.2.0",
"@angular/cli": "21.1.4",
"@angular/compiler-cli": "21.1.4",
"@angular/language-service": "21.1.4",
"@changesets/cli": "^2.30.0",
"@compodoc/compodoc": "1.1.24",
"@nestjs/schematics": "^11.0.7",
"@nestjs/testing": "^11.1.6",
"@nx/angular": "22.5.1",
"@nx/cypress": "22.5.1",
"@nx/eslint": "22.5.1",
"@nx/eslint-plugin": "22.5.1",
"@nx/jest": "22.5.1",
"@nx/js": "22.5.1",
"@nx/nest": "22.5.1",
"@nx/node": "22.5.1",
"@nx/rollup": "22.5.1",
"@nx/web": "22.5.1",
"@nx/webpack": "22.5.1",
"@nx/workspace": "22.5.1",
"@schematics/angular": "21.1.4",
"@swc-node/register": "~1.8.0",
"@swc/cli": "0.3.12",
"@swc/core": "1.3.96",
"@swc/jest": "0.2.39",
"@types/crypto-js": "^4.1.1",
"@types/jest": "30.0.0",
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.6",
"@types/marked": "^4.0.3",
"@types/node": "^22.13.0",
"@types/resize-observer-browser": "^0.1.7",
"@typescript-eslint/eslint-plugin": "8.55.0",
"@typescript-eslint/parser": "8.55.0",
"ajv-formats": "^2.1.1",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.0",
"axios-mock-adapter": "^2.1.0",
"concurrently": "^7.1.0",
"cross-env": "^7.0.3",
"cypress": "^13.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.1",
"exitzero": "1.0.1",
"jest": "30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-environment-node": "^29.4.1",
"jest-preset-angular": "16.0.0",
"jsonc-eslint-parser": "^2.1.0",
"ng-packagr": "21.1.0",
"nodemon": "^3.1.7",
"nx": "22.5.1",
"postcss": "^8.4.5",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "^3.3.3",
"rimraf": "^5.0.5",
"tailwindcss": "^4.1.18",
"ts-jest": "29.4.6",
"ts-morph": "^27.0.0",
"ts-node": "10.9.1",
"typedoc": "^0.25.4",
"typescript": "5.9.3",
"verdaccio": "^5.0.4",
"webpack-bundle-analyzer": "^4.10.1"
},
"workspaces": [
"apps/*",
"libs/*",
"packages/*",
"packages/plugins/*",
"docs",
"legacies/*"
],
"nx": {
"includedScripts": []
},
"pnpm": {
"overrides": {
"@xpert-ai/plugin-sdk": "workspace:*",
"@langchain/core": "0.3.72",
"langchain": "0.3.31",
"@modelcontextprotocol/sdk": "1.12.1",
"zod": "3.25.67",
"web-streams-polyfill": "^4.2.0"
}
},
"packageManager": "pnpm@10.24.0"
}