forked from fregante/content-scripts-register-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.08 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": "content-scripts-register-polyfill",
"version": "1.0.5",
"description": "Chrome extension polyfill for Firefox's browser.contentScripts.register()",
"keywords": [
"browser",
"content scripts",
"contentScripts",
"css",
"declarative",
"declarativecontent",
"extension",
"scripts",
"web-ext",
"webext"
],
"repository": "fregante/content-scripts-register-polyfill",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (bfred.it)",
"files": [
"index.js",
"index.d.ts",
"globals.d.ts"
],
"scripts": {
"build": "tsc",
"prepack": "tsc --sourceMap false",
"test": "xo && tsc --noEmit",
"watch": "tsc --watch"
},
"xo": {
"envs": [
"browser"
],
"globals": [
"chrome"
],
"rules": {
"@typescript-eslint/triple-slash-reference": "off",
"import/no-unassigned-import": "off"
}
},
"dependencies": {
"@types/firefox-webext-browser": "^78.0.1",
"webext-patterns": "^0.9.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.7.0",
"@types/chrome": "0.0.122",
"typescript": "^3.9.7",
"xo": "^0.33.0"
}
}