-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "typed-webext",
"version": "0.6.12",
"description": "Type safe web extension api (partial)",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"homepage": "https://github.com/ziloen/typed-webext",
"scripts": {
"build": "tsup",
"prepack": "npm run build",
"release": "bumpp --commit --no-push && npm publish",
"test": "vitest"
},
"keywords": [
"browser",
"extension",
"typescript"
],
"exports": {
".": "./dist/index.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/webextension-polyfill": "^0.12.1",
"@ziloen/webext-utils": "^0.0.5",
"rxjs": "^7.8.1",
"serialize-error": "<12",
"webextension-polyfill": ">=0.12.0 <=1.0.0"
},
"files": [
"dist"
],
"devDependencies": {
"@ziloen/eslint-config": "^0.1.56",
"bumpp": "^9.9.1",
"eslint": "^9.17.0",
"ts-lib-enhance": "^1.0.20",
"tsup": "^8.3.5",
"type-fest": "^4.30.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"serialize-error": "<12",
"webextension-polyfill": ">=0.12.0 <=1.0.0"
}
}