-
-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
80 lines (80 loc) · 2.01 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": "polacode",
"displayName": "Polacode",
"description": "📸 Polaroid for your code",
"version": "0.3.4",
"repository": {
"type": "git",
"url": "https://github.com/octref/polacode.git"
},
"publisher": "pnp",
"keywords": [
"polacode",
"polaroid",
"screenshot",
"snippet",
"share"
],
"galleryBanner": {
"color": "#fbfbfb",
"theme": "light"
},
"icon": "icon.png",
"categories": [
"Other"
],
"engines": {
"vscode": "^1.32.0"
},
"activationEvents": [
"onCommand:polacode.activate",
"onWebviewPanel:polacode"
],
"main": "./src/extension",
"contributes": {
"commands": [
{
"command": "polacode.activate",
"title": "Polacode 📸"
}
],
"configuration": {
"title": "Polacode",
"properties": {
"polacode.shadow": {
"type": "string",
"description": "Shadow of the snippet node. Use any value for CSS `box-shadow`",
"default": "rgba(0, 0, 0, 0.55) 0px 20px 68px"
},
"polacode.transparentBackground": {
"type": "boolean",
"description": "Transparent background for containers",
"default": false
},
"polacode.backgroundColor": {
"type": "string",
"description": "Background color of snippet container. Use any value for CSS `background-color`",
"format": "color-hex",
"default": "#f2f2f2"
},
"polacode.target": {
"type": "string",
"description": "Shoot with or without container",
"default": "container",
"enum": [
"container",
"snippet"
],
"enumDescriptions": [
"Shoot with the container.",
"Shoot with the snippet alone. If you want transparent padding, use `container` with `\"polacode.transparentBackground\": true`"
]
}
}
}
},
"devDependencies": {
"@types/node": "^11.12.0",
"@types/vscode": "^1.32.0"
}
}