forked from ChatLab/ChatLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.44 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 4.44 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
{
"name": "ChatLab",
"version": "0.36.1",
"private": true,
"description": "本地化的聊天记录分析工具,通过 SQL 和 AI Agent 回顾你的社交记忆",
"repository": {
"type": "git",
"url": "git+https://github.com/ChatLab/ChatLab.git"
},
"author": "digua <hello@digua.me>",
"packageManager": "pnpm@11.21.0",
"engines": {
"node": ">=24 <25",
"pnpm": ">=11 <12"
},
"scripts": {
"dev": "node scripts/dev-select.mjs",
"dev:desktop": "pnpm --filter @openchatlab/desktop dev",
"build:native": "pnpm --filter @openchatlab/parser-native build",
"build:parser-wasm": "pnpm --filter @openchatlab/parser-native build:wasm",
"build:desktop": "pnpm --filter @openchatlab/desktop build",
"build:mac": "pnpm --filter @openchatlab/desktop build:mac",
"build:win": "pnpm --filter @openchatlab/desktop build:win",
"build:skill-validator": "node scripts/build-chatlab-skill-validator.mjs",
"dev:serve": "bash scripts/dev-serve.sh",
"dev:cli-web": "pnpm run ensure:server-native && CHATLAB_AUTO_SERVE=1 vite --config vite.cli-web.config.mts",
"dev:web-wasm": "vite --config vite.web-wasm.config.mts",
"dev:web-ai-spike": "vite --config tests/web-ai-sdk-spike/vite.config.mts",
"ensure:server-native": "pnpm --filter chatlab-cli run ensure-native",
"build:cli-web": "vite build --config vite.cli-web.config.mts",
"build:web-wasm": "vite build --config vite.web-wasm.config.mts",
"build:web-ai-spike": "vite build --config tests/web-ai-sdk-spike/vite.config.mts",
"bench:startup": "node scripts/bench-cli-web-startup.mjs",
"bench:startup:fixture": "node scripts/create-startup-benchmark-fixture.mjs",
"docs:dev": "pnpm --filter @openchatlab/docs dev",
"docs:build": "pnpm --filter @openchatlab/docs build",
"docs:preview": "pnpm --filter @openchatlab/docs preview",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"type-check:web": "vue-tsc --noEmit -p tsconfig.web.json",
"type-check:web-ai-spike": "tsc --noEmit -p tests/web-ai-sdk-spike/tsconfig.json",
"type-check:node": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p apps/desktop/tsconfig.node.json",
"type-check:all": "pnpm run type-check:web && pnpm run type-check:node",
"type-check": "vue-tsc --noEmit -p tsconfig.web.json",
"check:workspace-deps": "node scripts/check-workspace-dependencies.mjs",
"test": "node scripts/run-tests.mjs",
"test:unit": "node scripts/run-tests.mjs",
"test:auth": "tsx --test apps/cli/src/http/auth.test.ts src/services/utils/http.test.ts",
"test:agent-context": "node --experimental-strip-types --test apps/desktop/main/ai/context/sessionLog.test.mjs",
"test:e2e:launcher": "node scripts/run-tests.mjs tests/e2e/helpers/app-launcher.test.js",
"test:e2e:smoke": "node tests/e2e/run-smoke.js"
},
"dependencies": {
"@tanstack/vue-virtual": "^3.13.18",
"@zumer/snapdom": "^2.16.0",
"echarts": "^6.0.0",
"echarts-wordcloud": "^2.1.0",
"markdown-it": "^14.1.0",
"pixi-viewport": "^6.0.3",
"pixi.js": "^8.19.0",
"three": "^0.185.0",
"vue-i18n": "^11.2.8"
},
"devDependencies": {
"@ai-sdk/deepseek": "^3.0.13",
"@ai-sdk/openai-compatible": "^3.0.14",
"@electron-toolkit/tsconfig": "^1.0.1",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/lucide": "^1.2.118",
"@iconify-json/simple-icons": "1.2.83",
"@iconify/vue": "5.0.1",
"@nuxt/icon": "2.3.1",
"@nuxt/ui": "^4.9.0",
"@openchatlab/ai-runtime": "workspace:*",
"@openchatlab/core": "workspace:*",
"@openchatlab/parser": "workspace:*",
"@openchatlab/parser-native": "workspace:*",
"@openchatlab/shared-types": "workspace:*",
"@openchatlab/tools": "workspace:*",
"@openchatlab/web-ai-runtime": "workspace:*",
"@openchatlab/web-runtime": "workspace:*",
"@tailwindcss/vite": "^4.0.0",
"@types/markdown-it": "^14.1.2",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.9.0",
"@vueuse/core": "^13.9.0",
"ai": "^7.0.37",
"dayjs": "^1.11.19",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^9.33.0",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.0",
"typescript": "^6.0.3",
"vite": "^7.0.0",
"vue": "^3.5.25",
"vue-router": "^4.6.3",
"vue-tsc": "3.2.6",
"zod": "^3.25.76"
}
}