-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "pasteurl",
"displayName": "Paste URL",
"description": "Paste URL in Markdown/reStructuredText format",
"version": "0.5.6",
"publisher": "kukushi",
"repository": {
"type": "git",
"url": "https://github.com/kukushi/PasteURL.git"
},
"bugs": {
"url": "https://github.com/kukushi/PasteURL/issues"
},
"author": "kukushi",
"license": "MIT",
"icon": "images/icon.png",
"homepage": "https://github.com/kukushi/PasteURL/blob/master/README.md",
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:pasteURL.PasteURL"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "pasteURL.PasteURL",
"title": "Paste URL"
}
],
"keybindings": [
{
"key": "ctrl+alt+p",
"command": "pasteURL.PasteURL"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^7.0.0",
"@types/node": "^14.0.0",
"@types/vscode": "^1.16.0",
"mocha": "^10.2.0",
"npm": "^9.4.1",
"typescript": "^3.9.5",
"vscode-test": "^1.4.0"
},
"dependencies": {
"copy-paste": "^1.3.0",
"get-title": "^1.1.2",
"he": "^1.2.0",
"hyperquest": "^2.1.3",
"request": "^2.88.2"
}
}