-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.67 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
{
"name": "omnisearch-companion",
"version": "1.4.3",
"scripts": {
"clean": "rimraf dist",
"clean-prod": "rimraf dist-prod",
"prebuild-ff": "npm run clean",
"prestart-ff": "npm run build-ff",
"preprod-ff": "npm run clean-prod",
"preexport-ff": "npm run prod-ff",
"prebuild-cr": "npm run clean",
"prestart-cr": "npm run build-cr",
"preprod-cr": "npm run clean-prod",
"preexport-cr": "npm run prod-cr",
"build-ff": "parcel build src/_firefox/manifest.json",
"start-ff": "web-ext run -s dist/ --devtools",
"prod-ff": "parcel build src/_firefox/manifest.json --no-source-maps --dist-dir dist-prod",
"export-ff": "web-ext build -s dist-prod -a web-ext-firefox-artifacts",
"build-cr": "parcel build src/_chrome/manifest.json",
"start-cr": "web-ext run -s dist/ --devtools --target chromium",
"prod-cr": "parcel build src/_chrome/manifest.json --no-source-maps --dist-dir dist-prod",
"export-cr": "web-ext build -s dist-prod -a web-ext-chrome-artifacts",
"version": "node version-bump.mjs && git add src/_firefox/manifest.json && git add src/_chrome/manifest.json"
},
"devDependencies": {
"@parcel/config-webextension": "^2.11.0",
"@parcel/core": "^2.11.0",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.20",
"@types/sanitize-html": "^2.11.0",
"@types/showdown": "^2.0.6",
"@types/webextension-polyfill": "^0.10.7",
"buffer": "^6.0.3",
"parcel": "^2.11.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.2",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"lodash": "^4.17.21",
"lucide": "^0.335.0",
"sanitize-html": "^2.12.1",
"showdown": "^2.1.0"
}
}