forked from serversideup/webext-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "@heliaxdev/webext-bridge",
"version": "5.0.3",
"description": "Messaging in Web Extensions made easy. Out of the box.",
"keywords": [
"chrome",
"extension",
"messaging",
"communication",
"protocol",
"content",
"background",
"devtools",
"script",
"crx",
"bridge"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/heliaxdev/webext-bridge.git"
},
"author": "Neek Sandhu <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"watch": "npm run build -- --watch",
"release": "bumpp --commit --push --tag && npm run build && npm publish"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/heliaxdev/webext-bridge/issues"
},
"homepage": "https://github.com/heliaxdev/webext-bridge#readme",
"dependencies": {
"@types/webextension-polyfill": "^0.8.0",
"nanoevents": "^6.0.0",
"serialize-error": "^8.1.0",
"tiny-uid": "^1.1.1",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.7.0",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"bumpp": "^6.0.6",
"eslint": "^7.32.0",
"tsup": "^4.14.0",
"type-fest": "^2.1.0",
"typescript": "^4.3.5"
}
}