-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 893 Bytes
/
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
{
"name": "magda-llm-service-worker-extension",
"version": "1.0.4",
"description": "A Google chrome extension runs LLM in extension background service worker to support Magda frontend chatbot",
"private": true,
"scripts": {
"build": "parcel build src/manifest.json --config @parcel/config-webextension",
"prebuild": "rimraf dist && rimraf .parcel-cache"
},
"author": "Jacky Jiang",
"license": "Apache-2.0",
"devDependencies": {
"@parcel/config-webextension": "^2.9.3",
"@types/chrome": "^0.0.242",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"buffer": "^6.0.3",
"parcel": "^2.9.3",
"prettier": "^3.3.2",
"process": "^0.11.10",
"rimraf": "^5.0.7",
"url": "^0.11.1"
},
"dependencies": {
"@mlc-ai/web-llm": "0.2.73",
"react": "^19.0.0",
"react-async-hook": "^4.0.0",
"react-dom": "^19.0.0"
}
}