-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
106 lines (106 loc) · 2.56 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
{
"name": "vscode-mac-color-picker",
"displayName": "macOS Color Picker",
"description": "Native macOS color picker for CSS, HTML and other uses (like in TextMate).",
"version": "1.1.0",
"author": {
"name": "Eugene / Dae",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EugeneDae/vscode-mac-color-picker"
},
"bugs": {
"url": "https://github.com/EugeneDae/vscode-mac-color-picker/issues"
},
"publisher": "dae",
"icon": "res/icon.png",
"categories": [
"Other"
],
"keywords": [
"color picker",
"eyedropper",
"css",
"palette",
"textmate"
],
"engines": {
"vscode": "^1.69.2"
},
"activationEvents": [
"onCommand:extension.macColorPicker"
],
"extensionKind": [
"ui"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.macColorPicker",
"title": "Open macOS Color Picker"
}
],
"configuration": {
"type": "object",
"title": "macOS Color Picker",
"properties": {
"macColorPicker.defaultColorNotation": {
"type": "string",
"markdownDescription": "Which notation to use when inserting (rather than updating) a color.",
"default": "hex",
"enum": [
"hex",
"rgb",
"hsl",
"hwb"
],
"enumDescriptions": [
"For example: #0000FF",
"For example: rgb(0, 0, 255)",
"For example: hsl(240, 100%, 50%)",
"For example: hwb(240, 0%, 0%)"
]
},
"macColorPicker.lowercaseHexColors": {
"type": "boolean",
"markdownDescription": "Output hex colors in lowercase, e.g.: `#fff` instead of `#FFF`.",
"default": true
},
"macColorPicker.shortHexColors": {
"type": "boolean",
"markdownDescription": "Shorten hex colors when possible, e.g.: `#777` instead of `#777777`.",
"default": true
}
}
}
},
"scripts": {
"vscode:prepublish": "rm -rf out && webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/color-convert": "^2.0.0",
"@types/color-string": "^1.5.2",
"@types/node": "^18.6.1",
"@types/vscode": "^1.69.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"applescript": "^1.0.0",
"color-convert": "^2.0.1",
"color-string": "^1.9.1",
"eslint": "^8.20.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}