-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.37 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.37 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
{
"name": "linkedzen",
"version": "0.0.10",
"type": "module",
"scripts": {
"build": "extension build --browser all --zip true --zip-filename linkedzen --zip-source true --polyfill",
"build:ci:chrome": "extension build --browser chrome --polyfill",
"build:ci:firefox": "extension build --browser firefox",
"build:ci:edge": "extension build --browser edge --polyfill",
"build:ci:source": "extension build --zip-source --zip-filename linkedzen --polyfill",
"build:firefox": "extension build --browser firefox --zip true --zip-filename linkedzen",
"clean": "rm -rf dist",
"dev": "npm run clean && run-s dev:firefox dev:chrome",
"dev:firefox": "extension dev --browser firefox",
"dev:chrome": "extension dev --browser chrome",
"dev:wsl": "npm run clean && run-s dev:wsl:*",
"dev:wsl:chrome": "extension dev --browser chrome --chromium-binary=\"/mnt/c/Program Files/Google/Chrome/Application/chrome.exe\"",
"dev:wsl:firefox": "extension dev --browser firefox --profile=\"/mnt/c/Users/Bo/AppData/Roaming/Mozilla/Firefox/Profiles/46jwz93p.dev-edition-default\" --gecko-binary=\"/mnt/c/Program Files/Firefox Developer Edition/firefox.exe\"",
"start": "extension start"
},
"devDependencies": {
"extension": "^2.0.0-beta.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"typescript": "~5.6.2",
"web-ext": "^8.3.0"
}
}