-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.68 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": "Open Selected Links",
"displayName": "Open Selected Links",
"version": "1.8.0",
"author": "Natarajan Krishnaswami <[email protected]>",
"description": "Opens multiple links in the selected content in the current or new window or a tab group.",
"type": "module",
"license": "apache-2.0",
"keywords": [
"chrome-extension",
"utility",
"open-selected-links"
],
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "bunx --bun vite",
"build": "tsc --noEmit && vite build",
"preview": "bunx --bun vite preview",
"fmt": "prettier --write '**/*.{ts,json,css,scss,md}'",
"zip": "bunx --bun build && bunx --bun src/zip.js",
"test": "bunx --bun vitest run",
"coverage": "bunx --bun vitest run --coverage"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.25",
"@happy-dom/global-registrator": "^14.12.3",
"@types/chrome": "^0.0.246",
"@types/jsdom": "^21.1.7",
"@types/puppeteer": "^7.0.4",
"@vitest/coverage-v8": "^2.0.5",
"gulp": "^4.0.2",
"gulp-zip": "^6.0.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^4.5.3",
"vitest": "^2.0.5",
"vitest-chrome": "^0.1.0"
},
"openSelectedLinks": {
"extension_id": "fklbicgdocbmcjmmbmnbbefhjneiecan",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoVSLPbrAPwtiuV85/7TmiCyz7O6kyrbpWwpqiglqSw6faZkxd+mR7pmn+nYvM7Y9oxIdFpMGKC4z5U8O75bXSJb6jQ94GXknjWmEQVefg3oz958LCb837XQXxbRsOkzS2EZd2XnD8uRAdZmXM4SQUvPQ3EZu7JFjEEdStCOuSnzxvqVG86mIYsx/ebrEJSoCVTznu3BoM87J4u3b4KqzPyk1GoAr8fhTMvILqPsTdQQyK78QjZ40h0/5Trcfe9+qpiTW/nB6lK+2suRJZWb8RTisKnRjLXxpa7kVsk03Skr4LTcsHVyQFdsuGG8WavPz4PY3j3cLK+S6gPBM1M2+vwIDAQAB"
}
}