-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 KB
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
{
"name": "showroomprive-plus",
"version": "1.0.0",
"description": "",
"targets": {
"webext-dev": {
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"webext-prod": {
"distDir": "build"
}
},
"scripts": {
"start": "parcel src/manifest.json --host localhost --target webext-dev",
"build": "parcel build src/manifest.json --target webext-prod && web-ext build -s build -a . -o true",
"sign": "web-ext sign -s build -a . --api-key=$(grep API_KEY .env | cut -d '=' -f2) --api-secret=$(grep API_SECRET .env | cut -d '=' -f2)"
},
"author": "Keops",
"license": "ISC",
"devDependencies": {
"@parcel/config-webextension": "^2.7.0",
"@types/firefox": "^0.0.31",
"@types/firefox-webext-browser": "^94.0.1",
"@types/web": "^0.0.72",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"eslint": "^8.23.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"parcel": "^2.7.0",
"parcel-reporter-web-ext": "^0.3.2",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"typescript": "^4.8.2",
"web-ext": "^7.2.0"
},
"dependencies": {
"winston": "^3.8.1"
}
}