-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.15 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
{
"name": "challenge-grid-autofill-extension",
"version": "2.0.0",
"description": "This browser extension provides a way to programmatically parse prompts and automatically fill in the corresponding response for websites using security/challenge grids as an additional authentication mechanism, such as Entrust Physical Form Factor Authentication",
"author": "Ryan Thaut <[email protected]> (https://ryan.thaut.me)",
"homepage": "https://github.com/rthaut/challenge-grid-autofill-extension/",
"license": "GPL-3.0",
"private": true,
"scripts": {
"lint": "eslint ./app/",
"dev": "webextension-toolbox dev",
"build": "webextension-toolbox build",
"build:icons": "node scripts/generate-icons",
"start:chrome": "web-ext run --source-dir=./dist/chrome/ --target chromium",
"start:firefox": "web-ext run --source-dir=./dist/firefox/ --target firefox-desktop",
"start:firefox:nr": "npm run start:firefox -- --no-reload",
"test": "npm run lint && npm run test:firefox",
"test:firefox": "npm run build firefox && web-ext lint --source-dir=./dist/firefox/"
},
"repository": {
"type": "git",
"url": "git://https://github.com/rthaut/challenge-grid-autofill-extension.git"
},
"bugs": {
"url": "https://github.com/rthaut/challenge-grid-autofill-extension/issues"
},
"browserslist": [
"chrome >= 90",
"edge >= 91",
"firefox >= 109"
],
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.12",
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.15.13",
"nanoid": "^5.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.5.0",
"use-chrome-storage": "^1.3.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"@webextension-toolbox/webextension-toolbox": "^6.2.0",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"prettier": "^2.8.8",
"sharp": "^0.33.2",
"style-loader": "^3.3.4",
"web-ext": "^7.11.0"
}
}