-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "webllm-assistant",
"version": "1.0.0",
"description": "AI assistant within your browser.",
"private": true,
"scripts": {
"build": "rm -rf .parcel-cache && parcel build src/manifest.json --config @parcel/config-webextension",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@parcel/config-webextension": "^2.9.3",
"@types/chrome": "^0.0.242",
"@types/node": "^22.9.3",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^9.9.1",
"events": "^3.3.0",
"os-browserify": "^0.3.0",
"parcel": "^2.10.3",
"path-browserify": "^1.0.1",
"prettier": "^3.3.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"timers-browserify": "^2.0.12",
"url": "^0.11.1",
"util": "^0.12.5"
},
"dependencies": {
"@mlc-ai/web-agent-interface": "file:../web-agent-interface/lib",
"@mlc-ai/web-llm": "^0.2.76",
"lucide": "^0.453.0",
"showdown": "^2.1.0"
}
}