-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.16 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
72
73
74
75
76
77
78
79
80
{
"name": "webext-messenger",
"version": "0.28.0",
"description": "Browser Extension component messaging framework",
"keywords": [],
"repository": "pixiebrix/webext-messenger",
"license": "MIT",
"author": "Federico Brigante for PixieBrix <federico@pixiebrix.com> (https://www.pixiebrix.com)",
"type": "module",
"exports": {
".": {
"types": "./distribution/index.d.ts",
"default": "./distribution/index.js"
},
"./*": "./distribution/*"
},
"scripts": {
"build": "tsc",
"demo:watch": "parcel watch --no-cache --no-hmr",
"demo:build": "parcel build --no-cache --no-scope-hoist",
"prepack": "tsc --sourceMap false",
"test": "run-p test:unit lint build demo:build",
"test:unit": "vitest run",
"lint": "eslint .",
"fix": "eslint . --fix",
"watch": "tsc --watch"
},
"dependencies": {
"p-event": "^6.0.1",
"p-retry": "^6.2.0",
"serialize-error": "^11.0.3",
"type-fest": "^4.26.1",
"webext-detect": "^5.1.0"
},
"@parcel/resolver-default": {
"packageExports": true
},
"devDependencies": {
"@parcel/config-webextension": "^2.11.0",
"@sindresorhus/tsconfig": "^6.0.0",
"@types/chrome": "^0.0.279",
"@types/tape": "^5.6.4",
"@types/webextension-polyfill": "^0.12.1",
"buffer": "^6.0.3",
"eslint": "^8.57.0",
"eslint-config-pixiebrix": "^0.40.1",
"events": "^3.3.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.11.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"tape": "^5.9.0",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"webext-content-scripts": "^2.7.0",
"webextension-polyfill": "^0.12.0"
},
"targets": {
"main": false,
"default": {
"engines": {
"browsers": "Chrome 110"
},
"source": "source/test/manifest.json",
"sourceMap": {
"inline": true
}
}
},
"webExt": {
"sourceDir": "dist",
"run": {
"startUrl": [
"https://fregante.github.io/pixiebrix-testing-ground/Will-call-background-methods",
"https://fregante.github.io/pixiebrix-testing-ground/Will-call-other-CS-via-background"
]
}
}
}