|
1 | 1 | {
|
2 | 2 | "name": "@lobehub/chat",
|
3 |
| - "version": "1.46.7", |
| 3 | + "version": "1.47.0", |
4 | 4 | "description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
5 | 5 | "keywords": [
|
6 | 6 | "framework",
|
|
27 | 27 | "sideEffects": false,
|
28 | 28 | "scripts": {
|
29 | 29 | "build": "next build",
|
| 30 | + "build:analyze": "ANALYZE=true next build", |
| 31 | + "build:docker": "DOCKER=true next build && npm run build-sitemap", |
30 | 32 | "postbuild": "npm run build-sitemap && npm run build-migrate-db",
|
31 | 33 | "build-migrate-db": "bun run db:migrate",
|
32 | 34 | "build-sitemap": "tsx ./scripts/buildSitemapIndex/index.ts",
|
33 |
| - "build:analyze": "ANALYZE=true next build", |
34 |
| - "build:docker": "DOCKER=true next build && npm run build-sitemap", |
35 | 35 | "db:generate": "drizzle-kit generate && npm run db:generate-client",
|
36 | 36 | "db:generate-client": "tsx ./scripts/migrateClientDB/compile-migrations.ts",
|
37 | 37 | "db:migrate": "MIGRATION_DB=1 tsx ./scripts/migrateServerDB/index.ts",
|
|
59 | 59 | "start": "next start -p 3210",
|
60 | 60 | "stylelint": "stylelint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
|
61 | 61 | "test": "npm run test-app && npm run test-server",
|
| 62 | + "test:update": "vitest -u", |
62 | 63 | "test-app": "vitest run --config vitest.config.ts",
|
63 | 64 | "test-app:coverage": "vitest run --config vitest.config.ts --coverage",
|
64 | 65 | "test-server": "vitest run --config vitest.server.config.ts",
|
65 | 66 | "test-server:coverage": "vitest run --config vitest.server.config.ts --coverage",
|
66 |
| - "test:update": "vitest -u", |
67 | 67 | "type-check": "tsc --noEmit",
|
68 | 68 | "webhook:ngrok": "ngrok http http://localhost:3011",
|
69 | 69 | "workflow:cdn": "tsx ./scripts/cdnWorkflow/index.ts",
|
|
0 commit comments