-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·43 lines (43 loc) · 1.4 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
{
"name": "wwwyzzerdd",
"version": "1.1.0",
"license": "MIT",
"targets": {
"webext-dev": {
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"webext-prod": {}
},
"scripts": {
"start": "parcel src/manifest.json --host localhost --target webext-dev",
"build": "parcel build src/manifest.json --target webext-prod --no-source-maps",
"build-debug": "parcel build src/manifest.json --target webext-prod --no-optimize ",
"bundle": "cd dist/webext-prod; zip -r ../wwwyzzerdd.zip *",
"clean": "rm -rf dist/*",
"check": "tsc --noEmit"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@parcel/config-webextension": "^2.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-retry-promise": "^0.7.0"
},
"devDependencies": {
"@parcel/config-default": "^2.8.2",
"@parcel/core": "^2.8.2",
"@parcel/transformer-image": "2.8.2",
"@parcel/transformer-typescript-tsc": "^2.8.2",
"@parcel/validator-typescript": "^2.8.2",
"@types/chrome": "0.0.208",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"parcel": "^2.8.2",
"typescript": "^4.9.4"
}
}