-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.99 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
{
"name": "insomnia-plugin-aws-sso",
"version": "0.0.4",
"main": "dist/plugin.js",
"types": "dist/plugin.d.ts",
"description": "Reads from SSO populated AWS credentials for signing IAM V4 secured endpoints",
"insomnia": {
"name": "awsSSO",
"displayName": "AWS SSO",
"description": "Reads from SSO populated AWS credentials for signing IAM V4 secured endpoints",
"images": {
"icon": "images/icons/phocasbot-avatar.svg",
"cover": "images/icons/phocas-engineering-short.svg"
},
"publisher": {
"name": "Phocas Engineering",
"icon": "https://raw.githubusercontent.com/phocassoftware/aws-sso-insomnia-plugin/main/images/icons/phocas-engineering-full.svg"
},
"applications": {
"designer": "*",
"core": "*",
"cli": "*"
}
},
"scripts": {
"prepublish": "tsc",
"build": "tsc -p tsconfig.build.json",
"check:types": "tsc",
"test": "vitest",
"prepare": "husky install",
"semantic-release-dry": "semantic-release --dry-run",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/phocassoftware/aws-sso-insomnia-plugin.git"
},
"keywords": [
"AWS",
"SSO",
"Insomnia"
],
"author": "Phocas",
"license": "MIT (see LICENSE)",
"bugs": {
"url": "https://github.com/phocassoftware/aws-sso-insomnia-plugin/issues"
},
"homepage": "https://github.com/phocassoftware/aws-sso-insomnia-plugin#readme",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"husky": "^9.1.7",
"prettier": "3.4.2",
"pretty-quick": "^4.0.0",
"semantic-release": "^24.2.1",
"typescript": "^5.7.3",
"vitest": "^3.0.4",
"vitest-mock-extended": "^2.0.2"
},
"dependencies": {
"@aws-sdk/credential-provider-sso": "^3.734.0"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"engines": {
"node": ">=v20",
"npm": ">=10"
}
}