-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.24 KB
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": "shiftavenue-vs-code-sigin-ext",
"displayName": "shiftavenue VSCode Signing extension",
"description": "Extension for signing PowerShell scripts with a code signing certificate",
"version": "1.0.6",
"publisher": "shiftavenue",
"repository": "https://github.com/shiftavenue/shiftavenue-vs-code-signer-extension",
"icon": "images/shiftavenue.png",
"engines": {
"vscode": "^1.104.0"
},
"author": {
"name": "T0RST3N"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "shiftavenue-ps-signer.signScript",
"title": "shiftavenue: Sign PS script",
"icon": {
"light": "images/shiftavenue-PS-Signer-dark.svg",
"dark": "images/shiftavenue-PS-Signer-light.svg"
}
}
],
"menus": {
"editor/title": [
{
"when": "editorLangId == powershell",
"command": "shiftavenue-ps-signer.signScript",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "shiftavenue PS Signer configuration",
"properties": {
"shiftavenue-ps-signer.certSubjectName": {
"type": "string",
"default": "",
"description": "The 'Subject' name (or part of it) of the installed code signing certificate."
},
"shiftavenue-ps-signer.timestampServer": {
"type": "string",
"default": "http://timestamp.digicert.com",
"description": "URL of the timestamp server (so that the signature remains valid even after the certificate expires)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.104.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"typescript-eslint": "^8.46.3",
"eslint": "^9.39.1",
"typescript": "^5.9.3",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2"
}
}