-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "vsc-2fa",
"displayName": "vsc-2fa",
"description": "A Two-Factor Authentication (2FA) manager extension for Visual Studio Code.",
"publisher": "cai-qichang",
"version": "1.0.4",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Other"
],
"keywords": [
"2fa"
],
"extensionKind": [
"ui",
"workspace"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/caiqichang/vsc-2fa"
},
"icon": "resources/logo.png",
"markdown": "github",
"sponsor": {
"url": "https://afdian.com/a/caiqichang"
},
"main": "out/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "2fa",
"title": "2FA"
}
]
},
"scripts": {
"prepackage": "node script/pre-package.js && npm run compile",
"package": "npx --package @vscode/vsce vsce package -o build/",
"compile": "tsc --project ./",
"watch": "tsc --watch --project ./"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@types/vscode": "^1.94.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@vscode/codicons": "^0.0.36",
"@vscode/webview-ui-toolkit": "^1.4.0",
"vue": "^3.5.12"
}
}