-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.72 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.72 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
{
"name": "ChatLab",
"version": "0.12.1",
"description": "本地化的聊天记录分析工具,通过 SQL 和 AI Agent 回顾你的社交记忆",
"repository": {
"type": "git",
"url": "git+https://github.com/hellodigua/ChatLab.git"
},
"author": "",
"main": "./out/main/index.js",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron"
]
},
"scripts": {
"dev": "electron-vite dev",
"preview": "electron-vite preview",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"build": "electron-vite build",
"build:mac": "npm run build && electron-builder --mac --config electron-builder.yml -p never",
"build:win": "npm run build && electron-builder --win --config electron-builder.yml -p never",
"type-check:web": "vue-tsc --noEmit -p tsconfig.web.json",
"type-check:node": "tsc --noEmit -p tsconfig.node.json",
"type-check:all": "npm run type-check:web && npm run type-check:node",
"type-check": "vue-tsc --noEmit -p tsconfig.web.json",
"test:agent-context": "node --experimental-strip-types --test electron/main/ai/context/sessionLog.test.mjs",
"postinstall": "electron-rebuild"
},
"dependencies": {
"@aptabase/electron": "^0.3.1",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@mariozechner/pi-agent-core": "0.54.2",
"@mariozechner/pi-ai": "0.54.2",
"@node-rs/jieba": "^2.0.1",
"@tanstack/vue-virtual": "^3.13.18",
"@types/markdown-it": "^14.1.2",
"@zumer/snapdom": "^2.0.1",
"better-sqlite3": "^12.4.6",
"echarts": "^6.0.0",
"echarts-wordcloud": "^2.1.0",
"electron-updater": "^6.6.2",
"i18next": "^25.8.5",
"markdown-it": "^14.1.0",
"node-machine-id": "^1.1.12",
"stream-json": "^1.9.1",
"vue-echarts": "^8.0.1",
"vue-i18n": "^11.2.8",
"zod": "^4.3.5"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/rebuild": "^4.0.1",
"@nuxt/ui": "^4.2.1",
"@tailwindcss/vite": "^4.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/stream-json": "^1.7.8",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vueuse/core": "^13.9.0",
"axios": "^1.13.2",
"cross-env": "^7.0.3",
"dayjs": "^1.11.19",
"electron": "^35.0.0",
"electron-builder": "^26.0.12",
"electron-vite": "^3.0.0",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^9.33.0",
"mitt": "^3.0.1",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.0",
"vite": "^6.3.5",
"vue": "^3.5.25",
"vue-router": "^4.6.3"
}
}