-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
32 lines (32 loc) · 1.03 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
{
"name": "hoppscotch-extension",
"version": "0.37.0",
"description": "Provides more features to the Hoppscotch webapp (https://hoppscotch.io/)",
"scripts": {
"clean": "rimraf dist .parcel-cache",
"build:chrome": "HOPP_EXTENSION_TARGET=CHROME parcel build src/* --dist-dir dist/ --no-optimize && copyfiles icons/* dist",
"build:firefox": "HOPP_EXTENSION_TARGET=FIREFOX parcel build src/* --dist-dir dist/ --no-optimize && copyfiles icons/* dist"
},
"author": "Andrew Bastin",
"license": "MIT",
"devDependencies": {
"@parcel/config-default": "^2.10.0",
"@parcel/core": "^2.10.0",
"@parcel/plugin": "^2.10.0",
"@parcel/transformer-inline-string": "2.10.0",
"@parcel/transformer-raw": "^2.10.0",
"@types/chrome": "^0.0.246",
"@types/node": "^17.0.23",
"buffer": "^6.0.3",
"copyfiles": "^2.4.1",
"parcel": "^2.10.0",
"process": "^0.11.10",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.5.1",
"lit": "^3.1.3",
"lit-html": "^3.0.0"
}
}