-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
221 lines (221 loc) · 8.49 KB
/
package.json
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
{
"name": "captain",
"version": "1.0.0-alpha.103",
"private": true,
"description": "The Captain of AI",
"license": "AGPL 3.0",
"author": "Gregor Adams <[email protected]>",
"main": "app/background.js",
"scripts": {
"prebuild": "npm run eslint -- --fix",
"build": "nextron build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"copy-reports": "cpy \"./coverage/shared/coverage-final.json\" ./coverage/merge --rename=shared.json --flat && cpy \"./coverage/electron/coverage-final.json\" ./coverage/merge --rename=electron.json --flat && cpy \"./coverage/client/coverage-final.json\" ./coverage/merge --rename=client.json --flat",
"precoverage:merge": "mkdirp ./coverage/merge && npm run copy-reports",
"coverage:merge": "nyc merge ./coverage/merge ./coverage/combined-coverage.json",
"coverage:report": "nyc report --temp-dir ./coverage/merge --report-dir ./coverage/report --reporter lcov --reporter text",
"dev": "nextron",
"typedoc:generate": "run-p typedoc:client typedoc:electron typedoc:shared typedoc:create-captain-app typedoc:captn-**",
"posttypedoc:generate": "node ./scripts/nextra-meta.mjs",
"typedoc:client": "run-p typedoc:client-atoms typedoc:client-ions typedoc:client-organisms",
"typedoc:client-atoms": "npx typedoc --options typedoc.client-atoms.json",
"typedoc:client-ions": "npx typedoc --options typedoc.client-ions.json",
"typedoc:client-molecules": "npx typedoc --options typedoc.client-molecules.json",
"typedoc:client-organisms": "npx typedoc --options typedoc.client-organisms.json",
"typedoc:electron": "npx typedoc --options typedoc.electron.json",
"typedoc:shared": "npx typedoc --options typedoc.shared.json",
"typedoc:create-captain-app": "npx typedoc --options typedoc.create-captain-app.json",
"typedoc:captn-joy": "npx typedoc --options typedoc.captn-joy.json",
"typedoc:captn-react": "npx typedoc --options typedoc.captn-react.json",
"typedoc:captn-theme": "npx typedoc --options typedoc.captn-theme.json",
"typedoc:captn-utils": "npx typedoc --options typedoc.captn-utils.json",
"eslint": "eslint \"src/{**/*,*}.{ts,tsx}\"",
"postinstall": "electron-builder install-app-deps",
"ncu": "npx npm-check-updates@latest -u",
"ncu:check": "npx npm-check-updates@latest",
"sort-json": "node scripts/sort-json.mjs",
"spj": "npx sort-package-json@latest",
"test:all": "run-s test:client test:electron test:shared",
"posttest:all": "run-s coverage:merge coverage:report",
"test:client": "jest --runInBand --config jest.config.client.ts --verbose",
"pretest:e2e": "nextron build --no-pack",
"test:e2e": "cross-env TEST_ENV=test npx playwright test",
"test:e2e:local": "cross-env TEST_ENV=local npx playwright test",
"test:electron": "jest --runInBand --config jest.config.electron.ts --verbose",
"test:electron:e2e": "cross-env TEST_ENV=local jest --runInBand --config jest.config.electron.e2e.ts --verbose",
"test:shared": "jest --runInBand --config jest.config.shared.ts --verbose",
"toc": "npx markdown-toc README.md -i",
"tsc:noEmit": "tsc --noEmit"
},
"dependencies": {
"onnxruntime-node": "^1.18.0",
"sharp": "0.33.2"
},
"devDependencies": {
"@ai-sdk/anthropic": "^0.0.19",
"@ai-sdk/google": "^0.0.20",
"@ai-sdk/mistral": "^0.0.16",
"@ai-sdk/openai": "^0.0.24",
"@captn/joy": "^0.41.0",
"@captn/react": "^0.41.0",
"@captn/theme": "^0.41.0",
"@captn/utils": "^0.41.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@jest/globals": "^29.7.0",
"@langchain/community": "^0.2.9",
"@langchain/openai": "^0.1.2",
"@lottiefiles/react-lottie-player": "^3.5.4",
"@mdx-js/react": "3.0.1",
"@mui/base": "5.0.0-beta.40",
"@mui/icons-material": "5.15.19",
"@mui/joy": "5.0.0-beta.36",
"@mui/material": "5.15.19",
"@next/mdx": "14.2.3",
"@playwright/test": "^1.44.1",
"@qdrant/js-client-rest": "^1.9.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.25",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/node": "^20.14.2",
"@types/node-7z": "^2.1.8",
"@types/react": "^18.3.1",
"@types/react-custom-scrollbars": "^4.0.13",
"@types/react-dom": "^18.3.0",
"@types/react-file-icon": "^1.0.4",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-virtualized": "^9.21.30",
"@types/react-window": "^1.8.8",
"@types/sort-json": "^2.0.3",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@xenova/transformers": "github:xenova/transformers.js#v3",
"ai": "^3.1.30",
"axios": "^1.7.2",
"conventional-changelog-cli": "^5.0.0",
"cpy-cli": "^5.0.0",
"create-captain-app": "^0.39.0",
"cross-env": "^7.0.3",
"dayjs": "1.11.11",
"dot-prop": "^9.0.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"electron": "30.1.0",
"electron-builder": "^24.13.3",
"electron-context-menu": "^4.0.0",
"electron-dl": "^4.0.0",
"electron-log": "^5.1.5",
"electron-serve": "^2.0.0",
"electron-store": "^9.0.0",
"electron-updater": "^6.2.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-config-xo": "^0.45.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^53.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"execa": "^9.2.0",
"exifr": "^7.1.3",
"file-type": "^19.0.0",
"framer-motion": "^11.2.10",
"fs-extra": "^11.2.0",
"get-port": "^7.1.0",
"globby": "14.0.1",
"gray-matter": "^4.0.3",
"husky": "^9.0.11",
"i18next": "23.11.5",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"jest-ts-webcompat-resolver": "^1.0.0",
"jotai": "2.8.3",
"json5": "^2.2.3",
"langchain": "^0.2.5",
"lodash": "^4.17.21",
"mathjs": "^13.0.0",
"mkdirp": "^3.0.1",
"next": "^13.5.6",
"next-i18next": "15.3.0",
"next-transpile-modules": "10.0.1",
"nextron": "^8.15.0",
"node-7z": "^3.0.0",
"node-loader": "^2.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"openai": "^4.49.0",
"p-wait-for": "^5.0.2",
"prettier": "^3.3.1",
"react": "^18.3.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^18.3.1",
"react-file-icon": "^1.4.0",
"react-hook-form": "^7.51.5",
"react-i18next": "14.1.2",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.3",
"react-virtualized": "^9.22.5",
"react-virtualized-auto-sizer": "^1.0.24",
"react-window": "^1.8.10",
"react-zoom-pan-pinch": "^3.4.4",
"rehype-format": "^5.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-breaks": "^4.0.0",
"remark-gemoji": "^8.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"semantic-release": "^22.0.12",
"semver": "^7.6.2",
"sort-json": "^2.0.1",
"swr": "^2.2.5",
"ts-jest": "^29.1.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tslib": "2.6.3",
"type-fest": "4.19.0",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.5",
"use-debounce": "^10.0.1",
"uuid": "^9.0.1",
"webpack": "^5.91.0",
"ws": "^8.17.0",
"yaml": "^2.4.3",
"zod": "^3.23.8"
},
"optionalDependencies": {
"@swc/core-darwin-arm64": "^1.5.25",
"@swc/core-darwin-x64": "^1.5.25",
"@swc/core-linux-arm-gnueabihf": "^1.5.25",
"@swc/core-linux-arm64-gnu": "^1.5.25",
"@swc/core-linux-arm64-musl": "^1.5.25",
"@swc/core-linux-x64-gnu": "^1.5.25",
"@swc/core-linux-x64-musl": "^1.5.25",
"@swc/core-win32-x64-msvc": "^1.5.25"
}
}