-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
121 lines (121 loc) · 3.13 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "dingo-vscode",
"displayName": "Dingo",
"description": "Allows you to download and open a Git repository directly from VS Code",
"version": "1.0.13",
"author": "Wallaby.js",
"homepage": "https://wallabyjs.com/dingo/",
"bugs": {
"url": "https://github.com/wallabyjs/dingo/issues"
},
"publisher": "WallabyJs",
"repository": {
"url": "git+https://github.com/wallabyjs/dingo.git"
},
"icon": "logo.png",
"keywords": [
"JavaScript",
"TypeScript"
],
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:dingo-vscode.open"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Dingo Configuration",
"properties": {
"dingo.directory": {
"description": "Download repositories to this directory (os.tmpdir() by default)",
"type": "string",
"default": ""
},
"dingo.gitPath": {
"description": "Explicitly set Git path.",
"type": "string",
"default": ""
},
"dingo.npmPath": {
"description": "Explicitly set npm path for installing packages.",
"type": "string",
"default": ""
},
"dingo.yarnPath": {
"description": "Explicitly set Yarn path for installing packages.",
"type": "string",
"default": ""
},
"dingo.automaticallyOpen": {
"description": "Automatically open repo after downloading",
"type": "string",
"default": "Always",
"enum": [
"Always",
"Prompt",
"Never"
],
"enumDescriptions": [
"Always open the repo",
"Prompt to open the repo",
"Never open the repo"
]
},
"dingo.automaticallyInstall": {
"description": "Automatically install packages after downloading",
"type": "string",
"default": "Prompt",
"enum": [
"Always",
"Prompt",
"Never"
],
"enumDescriptions": [
"Always install packages",
"Prompt to install packages",
"Never install packages"
]
}
}
},
"commands": [
{
"command": "dingo-vscode.open",
"title": "Open",
"category": "Dingo"
}
]
},
"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"
},
"dependencies": {
"rimraf": "^3.0.2",
"validate-npm-package-name": "^4.0.0"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^17.0.18",
"@types/rimraf": "^3.0.2",
"@types/validate-npm-package-name": "^4.0.0",
"@types/vscode": "^1.71.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"glob": "^8.0.3",
"typescript": "^4.8.2"
}
}