forked from mlc-ai/web-llm-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.26 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
{
"name": "web-llm-chat",
"version": "0.2",
"private": false,
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "cross-env BUILD_MODE=standalone next build",
"start": "next start",
"lint": "next lint",
"export": "cross-env BUILD_MODE=export next build",
"export:dev": "cross-env BUILD_MODE=export next dev",
"prompts": "node ./scripts/fetch-prompts.mjs",
"prepare": "husky install",
"proxy-dev": "sh ./scripts/init-proxy.sh && proxychains -f ./scripts/proxychains.conf yarn dev"
},
"dependencies": {
"@fortaine/fetch-event-source": "^3.0.6",
"@hello-pangea/dnd": "^16.5.0",
"@mlc-ai/web-llm": "^0.2.51",
"@serwist/next": "^9.0.2",
"@svgr/webpack": "^6.5.1",
"emoji-picker-react": "^4.9.2",
"fuse.js": "^7.0.0",
"html-to-image": "^1.11.11",
"loglevel": "^1.9.1",
"mermaid": "^10.6.1",
"nanoid": "^5.0.3",
"next": "^13.4.9",
"next-pwa": "^5.6.0",
"node-fetch": "^3.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.23.1",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"sass": "^1.59.2",
"spark-md5": "^3.0.2",
"use-debounce": "^10.0.1",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.2.7",
"@types/react-katex": "^3.0.4",
"@types/spark-md5": "^3.0.4",
"@webgpu/types": "^0.1.42",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^13.2.2",
"prettier": "^3.0.2",
"serwist": "^9.0.2",
"typescript": "^5.4.5",
"webpack": "^5.88.1",
"zustymiddlewarets": "^1.4.2"
},
"resolutions": {
"lint-staged/yaml": "^2.2.2"
},
"packageManager": "[email protected]",
"browser": {
"fs": false,
"path": false,
"perf_hooks": false,
"stream": false,
"stream-browserify": false,
"constants": false,
"module": false,
"os": false,
"process": false,
"util": false,
"assert": false
}
}