-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.32 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
70
71
{
"name": "webext-patterns",
"version": "1.5.0",
"description": "Tool to convert the patterns and globs of your WebExtension manifest to regex",
"keywords": [
"browser",
"chrome",
"extension",
"firefox",
"glob",
"permission",
"greasemonkey",
"user scripts",
"globs",
"userscript",
"match",
"webext"
],
"repository": "fregante/webext-patterns",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Federico Brigante <me@fregante.com> (https://fregante.com)",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "tsc",
"fix": "xo --fix",
"lint": "xo",
"prepare": "tsc --sourceMap false",
"test": "tsc && ava && xo",
"watch": "tsc --watch"
},
"xo": {
"envs": [
"browser",
"webextensions"
],
"rules": {
"unicorn/better-regex": "off"
}
},
"dependencies": {
"escape-string-regexp": "^5.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/chrome": "0.0.268",
"ava": "^6.1.3",
"sinon": "^18.0.0",
"type-fest": "^4.20.0",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"engines": {
"node": ">=18"
},
"webExt": {
"sourceDir": "demo-extension",
"run": {
"startUrl": [
"chrome://extensions/",
"https://example.com/"
]
}
}
}