-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
78 lines (78 loc) · 2.71 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
{
"name": "web-extension-boilerplate",
"version": "2.1.0",
"description": "Web extension boilerplate",
"main": "background.js",
"scripts": {
"code:lint": "eslint '**/**/*.{ts,tsx}'",
"code:lint-fix": "eslint --fix",
"code:prettier": "prettier --write",
"code:typecheck": "./node_modules/.bin/tsc --noEmit",
"app:chrome": "rimraf dist && cross-env BROWSER='chrome' webpack --config webpack/webpack.prod.js",
"app:chrome-dev": "cross-env BROWSER='chrome' webpack --config webpack/webpack.dev.js --watch",
"app:edge": "rimraf dist && cross-env BROWSER='edge' webpack --config webpack/webpack.prod.js",
"app:edge-dev": "cross-env BROWSER='edge' webpack --config webpack/webpack.dev.js --watch",
"app:firefox": "rimraf dist && cross-env BROWSER='firefox' webpack --config webpack/webpack.prod.js",
"app:firefox-dev": "cross-env BROWSER='firefox' webpack --config webpack/webpack.dev.js --watch",
"lint-staged": "lint-staged",
"test:unit": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidnguyen179/web-extension-boilerplate.git"
},
"keywords": [
"chrome extension",
"microsoft edge extension",
"firefox addon",
"web extension",
"typescript",
"ts",
"jest",
"sinon"
],
"author": "David Nguyen <[email protected]> ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidnguyen179/web-extension-boilerplate/issues"
},
"homepage": "https://github.com/davidnguyen179/web-extension-boilerplate#readme",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/chrome": "0.0.287",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"babel-jest": "29.7.0",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"eslint": "9.16.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"sinon": "19.0.2",
"terser-webpack-plugin": "5.3.10",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"typescript": "5.7.2",
"web-ext-types": "3.2.1",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"webpack-merge": "6.0.1",
"whatwg-fetch": "3.6.20"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm code:lint-fix",
"pnpm code:prettier"
]
},
"packageManager": "[email protected]+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}