-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.03 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
{
"name": "webext-tools",
"version": "2.0.1",
"description": "Utility functions for Web Extensions, manifest v2 and v3",
"keywords": [
"extension",
"chrome",
"firefox",
"safari",
"web",
"extensions",
"execute",
"function",
"browser"
],
"repository": "fregante/webext-tools",
"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",
"prepare": "tsc --sourceMap false",
"test": "xo && tsc --noEmit",
"watch": "tsc --watch"
},
"xo": {
"envs": [
"browser",
"webextensions"
]
},
"dependencies": {
"webext-content-scripts": "^2.7.0",
"webext-detect": "^5.0.2",
"webext-polyfill-kinda": "^1.0.2"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^6.0.0",
"@types/chrome": "^0.0.268",
"typescript": "^5.5.2",
"xo": "^0.58.0"
},
"engines": {
"node": ">=18"
}
}