-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.38 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
{
"name": "gist-snip",
"displayName": "Gist Snip",
"description": "Use your GitHub gists as autocomplete snippets.",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"version": "0.0.3",
"publisher": "vaibhavacharya",
"author": {
"name": "Vaibhav Acharya",
"email": "[email protected]",
"url": "https://www.twitter.com/VaibhavAcharya_"
},
"engines": {
"vscode": "^1.74.0"
},
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VaibhavAcharya/gist-snip"
},
"bugs": {
"url": "https://github.com/VaibhavAcharya/gist-snip/issues"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"github",
"gists",
"snippets",
"autocomplete"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.authenticateWithGithub",
"title": "Gist Snip: Authenticate with Github"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "1.74.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@octokit/rest": "^18.0.0"
}
}