This repository was archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"name": "vscode-drone-status",
"displayName": "Drone Build Status",
"description": "View your project's Drone status inside Visual Studio Code",
"version": "0.0.4",
"publisher": "cosformula",
"repository": {
"type": "git",
"url": "https://github.com/iftechio/vscode-drone-status"
},
"icon": "media/drone-logo-png-dark-128.png",
"bugs": {
"url": "https://github.com/iftechio/vscode-drone-status/issues"
},
"homepage": "https://github.com/iftechio/vscode-drone-status/blob/master/README.md",
"contributes": {
"commands": [
{
"command": "drone.openInDrone",
"title": "Drone: Open in Drone"
}
],
"configuration": {
"type": "object",
"title": "Drone Status Configuration",
"properties": {
"drone.accessToken": {
"type": "string",
"default": "",
"description": "Personal token for authentication, you can retrieve your user token from your user profile screen (/account/token) in the Drone user interface."
}
}
}
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:package": "vsce package",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc --enable-proposed-api -watch -p ./ "
},
"devDependencies": {
"@types/vscode": "^1.32.0",
"typescript": "^3.5.1"
},
"dependencies": {
"@types/eventsource": "^1.1.2",
"@types/node": "^12.7.2",
"axios": "^0.19.0",
"eventsource": "^1.0.7"
}
}