generated from ongnxco/mv3-parcel-webext-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
44
45
46
{
"name": "mv3-parcel-webext-template",
"version": "0.0.0",
"description": "Chrome Extension boilerplate for manifest v3. With React.",
"scripts": {
"start": "parcel watch src/manifest.json --host localhost",
"prebuild": "rimraf dist",
"build": "parcel build src/manifest.json --no-cache",
"postbuild": "node utils/remove-source-maps.mjs && node utils/create-zip.mjs",
"release": "dotenv release-it --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onikienko/mv3-parcel-webext-template.git"
},
"author": "Mykhailo Onikiienko <[email protected]> (https://github.com/onikienko)",
"license": "MIT",
"bugs": {
"url": "https://github.com/onikienko/mv3-parcel-webext-template/issues"
},
"homepage": "https://github.com/onikienko/mv3-parcel-webext-template#readme",
"devDependencies": {
"@parcel/config-webextension": "^2.9.3",
"@parcel/transformer-vue": "^2.9.3",
"@types/chrome": "^0.0.239",
"@types/fs-extra": "^11.0.1",
"cross-env": "^7.0.3",
"dot-json": "^1.3.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.44.0",
"filenamify": "^5.1.1",
"fs-extra": "^11.1.1",
"glob": "^10.3.1",
"opener": "^1.5.2",
"parcel": "^2.9.3",
"process": "^0.11.10",
"release-it": "^15.11.0",
"rimraf": "^5.0.1",
"sharp": "^0.31.3",
"zip-lib": "^0.7.3"
},
"dependencies": {
"vue": "^3.3.4",
"vue-router": "^4.2.2"
}
}