-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
115 lines (115 loc) · 2.66 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
{
"name": "clipimg-vscode",
"displayName": "ClipImg",
"description": "Extension that provides the ability to upload image from clipboard to Azure Storage",
"publisher": "gep13",
"version": "0.1.0",
"icon": "images/clipimg.png",
"license": "MIT",
"galleryBanner": {
"color": "#DCEBFC",
"theme": "light"
},
"bugs": {
"url": "https://github.com/gep13-oss/clipimg-vscode/issues"
},
"homepage": "https://github.com/gep13-oss/clipimg-vscode",
"repository": {
"type": "git",
"url": "https://github.com/gep13-oss/clipimg-vscode"
},
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.clipImg"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.clipImg",
"title": "Paste Image as Markdown"
}
],
"keybindings": [
{
"command": "extension.clipImg",
"key": "ctrl+alt+v",
"mac": "ctrl+cmd+v"
}
],
"configuration": {
"title": "ClipImg",
"properties": {
"clipImg.storageAccountName": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the storage account name to use."
},
"clipImg.storageAccountContainer": {
"type": [
"string",
"null"
],
"default": "clipimg-vscode",
"description": "Specifies the storage account container to use."
},
"clipImg.templateMarkdown": {
"type": [
"string",
"null"
],
"default": "![{{alt}}]({{uri}})",
"description": "Specifies the markdown tag template to use (available outputs: alt, uri)."
},
"clipImg.templateBlobName": {
"type": [
"string",
"null"
],
"default": "{{\"now\" | date: \"%Y/%m/%d\"}}/{{filename}}",
"description": "Specifies the blob filename template to use (available outputs: filename)."
},
"clipImg.templateBlobUri": {
"type": [
"string",
"null"
],
"default": "{{uri}}?{{sas}}",
"description": "Specifies the blob uri template to use (available outputs: container, blob, uri, sas, filename)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"@types/vscode": "^1.48.0",
"mocha": "^8.1.3",
"tslint": "^6.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
},
"dependencies": {
"@azure/storage-blob": "^12.9.0",
"guid-typescript": "^1.0.9",
"inversify": "^5.0.1",
"keytar": "^6.0.1",
"liquidjs": "^9.15.0",
"reflect-metadata": "^0.1.13"
}
}