-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 1.88 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
{
"name": "vscode-kms",
"displayName": "vscode-kms",
"description": "Encrypt and decrypt with AWS KMS",
"version": "0.4.0",
"publisher": "skyscrapers-engineering",
"repository": {
"type": "git",
"url": "https://github.com/skyscrapers/vscode-kms.git"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"license": "Apache-2.0",
"contributes": {
"commands": [
{
"command": "extension.kmsdecrypt",
"title": "KMS Decrypt"
},
{
"command": "extension.kmsencrypt",
"title": "KMS Encrypt"
}
],
"configuration": [
{
"title": "VSCode KMS",
"type": "object",
"properties": {
"vscode-kms": {
"type": "object",
"properties": {
"defaultEncryptionContext": {
"type": "string",
"description": "Default KMS encryption to use for encrypting, e.g. foo=bar"
},
"awsProfile": {
"type": "string",
"description": "Profile to use from the AWS local credentials file. Will ask on every operation if not set here."
}
},
"default": {
"vscode-kms.defaultEncryptionContext": null,
"vscode-kms.awsProfile": null
}
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.0",
"@types/vscode": "^1.71.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"glob": "^7.2.0",
"mocha": "^10.0.0",
"typescript": "^4.8.4",
"vscode-test": "^1.6.0"
},
"dependencies": {
"@types/ini": "^1.3.30",
"@aws-sdk/client-kms": "^3.650.0",
"ini": "^3.0.1"
}
}