-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "insert-random-hashtag",
"displayName": "Insert Random Hashtag #r4nd0m",
"description": "Insert random #hashtags in VS Code",
"version": "0.1.4",
"publisher": "chmac",
"repository": "https://github.com/chmac/vscode-insert-random-hashtag",
"license": "AGPL-3.0-or-later",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.insertHashtag"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.insertHashtag",
"title": "#hashtag Insert a random hash value"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"publish-patch": "vsce publish patch",
"publish-minor": "vsce publish minor",
"publish-major": "vsce publish major",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^10.14.17",
"@types/vscode": "^1.34.0",
"tslint": "^5.16.0",
"typescript": "^3.5.1"
}
}