-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1014 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
31
32
{
"name": "llm-chrome-extension",
"version": "0.0.1",
"license": "MIT",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel watch ./src/manifest.json --host localhost --config @parcel/config-webextension --dist-dir ./dist --no-content-hash",
"prebuild": "rm -rf ./dist",
"build": "parcel build ./src/manifest.json --config @parcel/config-webextension --dist-dir ./dist --no-content-hash"
},
"dependencies": {
"classnames": "^2.3.1",
"react": "18",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.2.0",
"react-frame-component": "^5.2.3",
"react-markdown": "^8.0.6",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@parcel/config-webextension": "^2.12.0",
"@types/chrome": "^0.0.279",
"@types/react": "18",
"@types/react-dom": "^18.0.6",
"parcel": "latest",
"postcss": "^8.4.16",
"postcss-nested": "^5.0.6",
"process": "^0.11.10",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3"
}
}