-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.19 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
{
"name": "webext-permissions",
"version": "3.1.4",
"description": "WebExtensions module: Get any optional permissions that users have granted you + other utilities.",
"keywords": [
"permissions",
"optional_permissions",
"manifest",
"granted",
"request",
"requested",
"added",
"extra",
"chrome",
"firefox",
"browser",
"extension"
],
"repository": "fregante/webext-permissions",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (https://fregante.com)",
"type": "module",
"exports": "./distribution/index.js",
"types": "./distribution/index.d.ts",
"files": [
"distribution/index.js",
"distribution/index.d.ts"
],
"scripts": {
"build": "tsc",
"prepack": "tsc --sourceMap false",
"test": "xo && tsc && vitest run",
"watch": "tsc --watch"
},
"xo": {
"envs": [
"browser",
"webextensions"
],
"rules": {
"unicorn/better-regex": "off"
}
},
"dependencies": {
"webext-patterns": "^1.5.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^7.0.0",
"@types/chrome": "^0.0.287",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"xo": "^0.60.0"
},
"engines": {
"node": ">=18"
}
}