-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.13 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.13 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": "browser-extension-webhook-trigger",
"version": "1.11.0",
"description": "This browser extension allows you to manage and trigger webhooks directly from your browser. It works with both Firefox and Chrome. It is designed for users who want to quickly send HTTP requests (webhooks) to custom endpoints, such as automation services, APIs, or personal scripts.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest",
"lint": "web-ext lint",
"build": "web-ext build --overwrite-dest",
"sync-version": "node scripts/sync-version.js",
"run": "web-ext run",
"start-firefox": "web-ext run --firefox-profile ~/.mozilla/firefox/ehxu5l3z.webhooks --keep-profile-changes --profile-create-if-missing",
"start-chromium": "LANGUAGE=en_US web-ext run --target=chromium --chromium-profile ~/.config/chromium/webhooks --keep-profile-changes --profile-create-if-missing"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^26.1.0",
"web-ext": "^9.3.0"
}
}