-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.21 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
{
"name": "chatease",
"productName": "ChatEase",
"version": "0.1.7",
"main": ".webpack/main",
"licenses": "GPL-3.0",
"description": "ChatEase Desktop App",
"repository": "https://github.com/gyuannn/ChatEase",
"scripts": {
"start": "electron-forge start",
"tailwindcss": "tailwindcss -i ./src/webview/index.css -o ./src/webview/tailwind.css --watch",
"test": "jest",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"preReleaseCheck": "node preReleaseCheck.js"
},
"keywords": [],
"author": {
"name": "gyuannn",
"email": "gyuannn1100@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.0.5",
"@electron-forge/maker-deb": "^6.0.5",
"@electron-forge/maker-rpm": "^6.0.5",
"@electron-forge/maker-squirrel": "^6.0.5",
"@electron-forge/maker-zip": "^6.1.1",
"@electron-forge/plugin-webpack": "^6.0.5",
"@electron-forge/publisher-github": "^6.0.5",
"@electron/universal": "^1.3.4",
"@tabler/icons-react": "^2.7.0",
"@types/eventsource": "^1.1.11",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.0.11",
"@types/tunnel": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"css-loader": "^6.0.0",
"electron": "23.1.1",
"electron-builder": "^23.6.0",
"eslint": "^8.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.25.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"jest": "^29.4.3",
"node-loader": "^2.0.0",
"sqlite3": "^5.1.4",
"style-loader": "^3.0.0",
"tailwindcss": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.2.2",
"ts-node": "^10.0.0",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^4.2.2"
},
"dependencies": {
"@dqbd/tiktoken": "^0.4.0",
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.0",
"@mantine/form": "^6.0.2",
"@mantine/hooks": "^6.0.0",
"@mantine/modals": "^6.0.0",
"@mantine/notifications": "^6.0.0",
"@mantine/spotlight": "^6.0.2",
"@reduxjs/toolkit": "^1.9.3",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/uuid": "^9.0.1",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"electron-log": "^5.0.0-beta.16",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.1.0",
"eventsource": "^2.0.2",
"gpt-3-encoder": "^1.1.4",
"highlight.js": "^11.7.0",
"html2canvas": "^1.4.1",
"i18next": "^22.4.13",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.2.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"react-markdown": "^8.0.5",
"react-redux": "^8.0.5",
"react-syntax-highlighter": "^15.5.0",
"redux-thunk": "^2.4.2",
"sequelize": "^6.29.1",
"tunnel": "^0.0.6",
"update-electron-app": "^2.0.1",
"uuid": "^9.0.0"
}
}