forked from royaction/vscode-colormanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.17 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
116
117
118
119
120
121
122
123
124
125
126
{
"name": "color-manager",
"displayName": "Color Manager",
"description": "color picker and color palette",
"version": "0.6.1",
"publisher": "royaction",
"engines": {
"vscode": "^1.36.0"
},
"icon": "icon.png",
"preview": true,
"license": "MIT",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.cm_open_palette",
"onCommand:extension.cm_open_picker",
"onCommand:extension.cm_open_picker_sel",
"onCommand:extension.cm_restore_factory",
"onCommand:extension.cm_palette_autocomplete_add",
"onCommand:extension.cm_palette_autocomplete_remove",
"onCommand:extension.cm_find_colors_in_selection",
"onCommand:extension.cm_changelog",
"onCommand:extension.cm_help"
],
"main": "./extension",
"contributes": {
"menus": {
"editor/context": [
{
"command": "extension.cm_open_palette",
"group": "99_cm"
},
{
"command": "extension.cm_open_picker",
"group": "99_cm"
},
{
"command": "extension.cm_open_picker_sel",
"group": "99_cm"
},
{
"command": "extension.cm_find_colors_in_selection",
"group": "99_cm"
}
]
},
"commands": [
{
"command": "extension.cm_open_palette",
"title": "open color palette"
},
{
"command": "extension.cm_open_picker",
"title": "open color picker"
},
{
"command": "extension.cm_open_picker_sel",
"title": "edit in color manager"
},
{
"command": "extension.cm_restore_factory",
"title": "restore factory palettes"
},
{
"command": "extension.cm_palette_autocomplete_add",
"title": "intellisense add palette"
},
{
"command": "extension.cm_palette_autocomplete_remove",
"title": "intellisense remove palette"
},
{
"command": "extension.cm_find_colors_in_selection",
"title": "find colors in selection"
},
{
"command": "extension.cm_changelog",
"title": "color manager changelog"
},
{
"command": "extension.cm_help",
"title": "color manager help"
}
],
"configuration": {
"title": "Color Manager configuration",
"properties": {
"color-manager.languages": {
"description": "array of language-ids where the intellisense-feature will be available, e.g.: \"scss\", \"javascript\" (see docs).",
"type": "array"
},
"color-manager.styles": {
"description": "customizes the style of the webview-extension: background-color, button-colors ... (see docs) ",
"type": "object"
},
"color-manager.insertClassicHex": {
"description": "if set to true, hex-colors will be inserted with the prefix '0x' instead of '#' (see docs)",
"type": "boolean",
"default": false
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.11.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"repository": {
"type": "git",
"url": "https://github.com/royaction/vscode-colormanager"
},
"__metadata": {
"id": "2d8a7f8c-621f-42d0-9cf3-4a1524fe158e",
"publisherId": "af2e36a4-96a1-408e-ae9e-769372ff72de",
"publisherDisplayName": "Roy Action"
}
}