-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 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
{
"name": "web_extension_workshop_popup",
"version": "0.2",
"targets": {
"webext-dev": {
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"webext-prod": {}
},
"scripts": {
"clean:dist": "rm -rf dist",
"start:v2": "parcel watch src/manifest2/manifest.json --host localhost --config @parcel/config-webextension",
"build:v2": "parcel build src/manifest2/manifest.json --config @parcel/config-webextension",
"start:v3": "parcel watch src/manifest3/manifest.json --host localhost --config @parcel/config-webextension",
"build:v3": "parcel build src/manifest3/manifest.json --config @parcel/config-webextension"
},
"devDependencies": {
"@parcel/config-webextension": "2.7.0",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/webextension-polyfill": "^0.9.1",
"autoprefixer": "10.4.11",
"parcel": "2.7.0",
"postcss": "8.4.16",
"process": "^0.11.10",
"tailwindcss": "3.1.8"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"webextension-polyfill": "0.10.0"
}
}