forked from webextension-toolbox/webextension-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.48 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
81
82
83
84
85
86
{
"name": "@webextension-toolbox/webextension-toolbox",
"version": "7.1.1",
"description": "Framework for WebExtensions (Firefox, Chrome, Opera, Edge)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": "[email protected]:webextension-toolbox/webextension-toolbox.git",
"author": "Henrik Wenz <[email protected]> (https://github.com/HaNdTriX)",
"contributors": [
{
"name": "Dávid Balatoni",
"email": "[email protected]",
"url": "https://github.com/balcsida"
},
{
"name": "Andrew Nagy",
"url": "https://github.com/tm1000"
}
],
"license": "MIT",
"bin": {
"webextension-toolbox": "./bin/webextension-toolbox.mjs"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts ./src",
"markdown-toc": "markdown-toc -i README.md"
},
"standard": {
"globals": [
"browser",
"chrome"
],
"ignore": [
"**/dist",
"**/node_modules"
]
},
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/runtime": "^7.23.9",
"@swc/core": "^1.3.107",
"@webextension-toolbox/webpack-webextension-plugin": "^3.3.1",
"babel-loader": "^9.1.3",
"browserslist": "^4.22.3",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"copy-webpack-plugin": "^12.0.2",
"find-up": "^7.0.0",
"glob": "^10.3.10",
"markdown-toc": "^1.2.0",
"swc-loader": "^0.2.3",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"webpack": "^5.90.0",
"webpack-dev-server": "^4.15.1",
"webpack-watched-glob-entries-plugin": "^3.0.0",
"webpackbar": "^6.0.0",
"yaml": "^2.3.4",
"zip-webpack-plugin": "^4.0.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/case-sensitive-paths-webpack-plugin": "^2.1.9",
"@types/firefox-webext-browser": "^120.0.0",
"@types/webpack-watched-glob-entries-plugin": "^2.1.7",
"@types/webpackbar": "^4.0.6",
"@types/zip-webpack-plugin": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.4",
"type-fest": "^4.10.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}