-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.42 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.42 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
{
"name": "Think",
"productName": "Think",
"version": "1.0.1",
"description": "An Electron application with Vue",
"main": "./out/main/index.js",
"author": "aibotpro.cn",
"homepage": "https://electron-vite.org",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac-arm": "npm run build && electron-builder --mac",
"build:mac": "npm run build && electron-builder --mac && electron-builder --mac --x64",
"build:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.36.3",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@electron/remote": "^2.1.2",
"@element-plus/icons-vue": "^2.3.1",
"@google/generative-ai": "^0.21.0",
"@vueuse/core": "^12.5.0",
"axios": "^1.7.9",
"clipboard": "^2.0.11",
"dayjs": "^1.11.13",
"dompurify": "^3.2.4",
"echarts": "^5.6.0",
"electron-log": "^5.3.0",
"electron-screenshots": "^0.5.27",
"electron-updater": "^6.3.9",
"element-plus": "^2.9.3",
"highlight.js": "^11.11.1",
"https-proxy-agent": "^7.0.6",
"js-tiktoken": "^1.0.16",
"katex": "^0.16.21",
"mammoth": "^1.9.0",
"markdown-it": "^14.1.0",
"markdown-it-copy": "^1.2.0",
"markdown-it-katex": "^2.0.3",
"markdown-it-texmath": "^1.0.0",
"mermaid": "^11.4.1",
"openai": "^4.80.0",
"pdf-parse": "^1.1.1",
"remixicon": "^4.6.0",
"sqlite3": "^5.1.7",
"uuid": "^11.0.5",
"vue-i18n": "^11.0.1",
"vue-router": "^4.5.0",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.2",
"@rushstack/eslint-patch": "^1.10.3",
"@vicons/ionicons5": "^0.13.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"electron": "^31.0.2",
"electron-builder": "^24.13.3",
"electron-vite": "^2.3.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"naive-ui": "^2.41.0",
"prettier": "^3.3.2",
"vite": "^5.3.1",
"vue": "^3.4.30"
},
"build": {
"appId": "com.aibotpro.think",
"productName": "Think",
"publish": {
"provider": "github",
"owner": "MayDay-wpf",
"repo": "Think",
"private": false
},
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"extraResources": [
{
"from": "node_modules/sqlite3/lib/binding/napi-v6-win32-x64",
"to": "app.asar.unpacked/node_modules/sqlite3/lib/binding/napi-v6-win32-x64",
"filter": [
"*.node"
]
}
]
}
}
}