-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.79 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "dashlane-vscode",
"displayName": "Dashlane",
"description": "Load your passwords, secrets and notes from Dashlane in VS Code",
"version": "1.0.1",
"publisher": "Dashlane",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Dashlane/dashlane-vscode"
},
"bugs": {
"url": "https://github.com/Dashlane/dashlane-vscode/issues"
},
"homepage": "https://dashlane.github.io/dashlane-cli",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"dashlane",
"password",
"cli",
"vscode"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#0b6476",
"theme": "dark"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "dashlane-vscode.sync",
"title": "Dashlane: Sync"
},
{
"command": "dashlane-vscode.logout",
"title": "Dashlane: Logout"
},
{
"command": "dashlane-vscode.getPassword",
"title": "Dashlane: Get Password"
},
{
"command": "dashlane-vscode.getNote",
"title": "Dashlane: Get Note"
}
],
"configuration": {
"title": "Dashlane",
"properties": {
"dashlane-vscode.shell": {
"type": "string",
"default": null,
"description": "The shell path or a login-shell to override Dashlane CLI process default shell (see Node child_process.spawn()) for more detail)"
},
"dashlane-vscode.cli": {
"type": "string",
"default": "dcli",
"description": "The path to the Dashlane-CLI binary (resolvable from $PATH)"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"deploy": "vsce publish --yarn",
"package": "vsce package --yarn",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.26.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
}
}