-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.98 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
{
"name": "vscode-placeholder-images",
"displayName": "Placeholder Images",
"description": "Generate and insert placeholder images into your HTML",
"version": "0.1.0",
"publisher": "JakeWilson",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"keywords": [
"placeholder",
"images",
"lorem",
"placehold.it",
"unsplash"
],
"repository": {
"type": "git",
"url": "https://github.com/Jakobud/vscode-placeholder-images.git"
},
"bugs": {
"url": "https://github.com/Jakobud/vscode-placeholder-images/issues"
},
"homepage": "https://github.com/Jakobud/vscode-placeholder-images",
"activationEvents": [
"onCommand:placeholderImages.insert",
"onCommand:placeholderImages.recent"
],
"icon": "images/icon.png",
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "placeholderImages.insert",
"title": "Insert new image",
"category": "Placeholder Images"
},
{
"command": "placeholderImages.recent",
"title": "Recent images",
"category": "Placeholder Images"
}
],
"configuration": {
"type": "object",
"title": "Placeholder Images",
"properties": {
"placeholderImages.quoteStyle": {
"type": "string",
"default": "double",
"enum": [
"single",
"double"
],
"description": "Quote style for HTML tags. Possible values are 'single' or 'double'"
},
"placeholderImages.maxRecentImages": {
"type": "integer",
"default": 10,
"description": "The maximum number of image urls to save for the Recent images list"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0"
},
"dependencies": {
"copy-paste": "^1.3.0",
"lodash": "^4.17.2",
"open": "0.0.5",
"vscode-cache": "^0.3.0"
}
}