-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.18 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "Mencrouche",
"version": "0.0.1",
"description": "A highly customizable web extension for new tab. Bring your own content to build your web experience.",
"scripts": {
"update-manifest": "zx scripts/dev.mjs",
"start": "parcel watch src/manifest.json --host localhost --config @parcel/config-webextension --no-cache",
"dev-site": "parcel --target website --lazy --open",
"test": "vitest",
"build": "parcel build src/manifest.json --config @parcel/config-webextension",
"build-site": "parcel build --target website",
"start-firefox": "web-ext run --source-dir dist/webext-dev --target=firefox-desktop",
"start-chromium": "web-ext run --source-dir dist/webext-dev --target=chromium",
"lint-dev": "web-ext lint --source-dir dist/webext-dev",
"lint-build": "web-ext lint --source-dir dist/webext-prod",
"pack-zip": "web-ext build --overwrite-dest --source-dir dist/webext-prod"
},
"author": "FOBshippingpoint",
"license": "MIT",
"type": "module",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@parcel/config-webextension": "^2.13.3",
"@parcel/core": "^2.13.3",
"@parcel/reporter-bundle-analyzer": "^2.13.3",
"@types/chrome": "^0.0.289",
"@types/dompurify": "^3.2.0",
"@types/firefox-webext-browser": "^120.0.4",
"@types/fs-extra": "^11.0.4",
"@types/markdown-it": "^14.1.2",
"@types/webextension-polyfill": "^0.12.1",
"@types/youtube": "^0.1.0",
"dompurify": "^3.2.3",
"happy-dom": "^16.3.0",
"highlight.js": "^11.11.1",
"idb": "^8.0.1",
"kikey": "^3.1.0",
"open-props": "2.0.0-beta.5",
"parcel": "^2.13.3",
"quill": "^2.0.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"web-ext": "^8.3.0",
"zx": "^8.3.0"
},
"targets": {
"website": {
"source": "./src/index.html",
"publicUrl": "./",
"distDir": "./dist/site"
},
"webext-dev": {
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"webext-prod": {
"sourceMap": false
}
},
"dependencies": {
"asciidoctor": "^3.0.4",
"caniuse-lite": "^1.0.30001690",
"marked": "^15.0.5",
"svgo": "^3.3.2",
"tweakpane": "^4.0.5"
}
}