-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
75 lines (75 loc) · 2.72 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
{
"name": "syncia",
"displayName": "Syncia",
"version": "1.5.3",
"description": "A simple chrome extension for interacting with ChatGPT with in your comfort",
"repository": {
"type": "git",
"url": "https://github.com/Royal-lobster/Syncia.git"
},
"author": "Royal-lobster",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"release": "pnpm build && publish-extension --chrome-zip \"artifacts/chrome.zip\" --chrome-extension-id \"$CHROME_EXTENSION_ID\" --chrome-client-id \"$CHROME_CLIENT_ID\" --chrome-client-secret \"$CHROME_CLIENT_SECRET\" --chrome-refresh-token \"$CHROME_REFRESH_TOKEN\"",
"release:cli": "pnpm build && dotenv -e .env -- publish-extension --chrome-zip \"artifacts/chrome.zip\" --chrome-extension-id \"$CHROME_EXTENSION_ID\" --chrome-client-id \"$CHROME_CLIENT_ID\" --chrome-client-secret \"$CHROME_CLIENT_SECRET\" --chrome-refresh-token \"$CHROME_REFRESH_TOKEN\"",
"format": "biome format . --write",
"lint": "biome check .",
"flush": "rm -rf artifacts/ dist/",
"lint:fix": "pnpm lint --apply"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@langchain/community": "^0.0.48",
"@langchain/core": "^0.1.57",
"@langchain/openai": "^0.0.28",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-switch": "^1.0.2",
"axios": "^1.3.5",
"dnd-kit-sortable-tree": "^0.1.58",
"endent": "^2.1.0",
"jotai": "^2.4.3",
"langchain": "^0.1.33",
"object-hash": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-highlight-menu": "^1.0.2",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.6",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.4.1",
"redirect-whitelister": "^1.0.0",
"rehype-raw": "^6.1.1",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
"sse": "github:mpetazzoni/sse.js",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.26.1",
"@crxjs/vite-plugin": "^2.0.0-beta.15",
"@types/chrome": "^0.0.213",
"@types/node": "^18.13.0",
"@types/object-hash": "^3.0.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"dotenv-cli": "^7.3.0",
"postcss": "^8.4.21",
"publish-browser-extension": "^1.4.1",
"tailwindcss": "^3.3.5",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vite-plugin-zip-pack": "^1.0.5"
}
}