-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
{
"author": {
"email": "[email protected]",
"name": "Daniel Morris",
"url": "https://unfun.co"
},
"dependencies": {
"@aws-sdk/client-sts": "3.574.0",
"fast-xml-parser": "4.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"webextension-polyfill": "0.12.0"
},
"description": "Intercepts the SAML assertion when logging into the AWS console and exchanges it for temporary STS credentials.",
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.23",
"@types/jest": "29.5.12",
"@types/node": "20.12.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-test-renderer": "18.3.0",
"@types/webextension-polyfill": "0.10.7",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-react-swc": "3.7.0",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.7",
"nodemon": "3.1.1",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"postcss": "8.4.38",
"react-test-renderer": "18.3.1",
"tailwindcss": "3.4.3",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"vite": "5.4.8",
"vite-plugin-static-copy": "1.0.5"
},
"engines": {
"node": "20",
"npm": ">=9"
},
"homepage": "https://github.com/unfunco/chrome-ext-aws-saml-sts#readme",
"license": "Apache-2.0",
"lint-staged": {
"*.{css,js,json,jsx,md,ts,tsx}": [
"prettier --write"
]
},
"name": "@unfunco/chrome-ext-aws-saml-sts",
"private": true,
"scripts": {
"build": "vite build",
"dev": "nodemon",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint-staged": "lint-staged",
"prepare": "husky install",
"test": "jest"
},
"type": "module",
"version": "0.4.2"
}