-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.8 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
{
"name": "change-color-format",
"license": "MIT",
"displayName": "Change Color Format",
"description": "Quickly transform colors to and from hex (#RRGGBB/AA), hsl(), rgb() and more.",
"version": "1.2.0",
"publisher": "bbugh",
"icon": "icon.png",
"homepage": "https://github.com/bbugh/vscode-change-color-format",
"author": {
"name": "Brian Bugh",
"url": "http://brianbugh.me/"
},
"bugs": {
"url": "https://github.com/bbugh/vscode-change-color-format/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bbugh/vscode-change-color-format.git"
},
"keywords": [
"color",
"css",
"format",
"hsl",
"replace",
"rgb"
],
"engines": {
"vscode": "^1.14.0"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"categories": [
"Formatters"
],
"activationEvents": [
"onCommand:extension.changeColorFormat.commands",
"onCommand:extension.changeColorFormat.hexSmartConvert",
"onCommand:extension.changeColorFormat.hslSmartConvert",
"onCommand:extension.changeColorFormat.rgbSmartConvert"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.changeColorFormat.commands",
"title": "Convert Color..."
},
{
"command": "extension.changeColorFormat.hexSmartConvert",
"title": "Convert Color to hex (#RRGGBB/AA)"
},
{
"command": "extension.changeColorFormat.hslSmartConvert",
"title": "Convert Color to hsl/hsla()"
},
{
"command": "extension.changeColorFormat.rgbSmartConvert",
"title": "Convert Color to rgb/rgba()"
}
]
},
"scripts": {
"prepare": "husky install",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"pretest": "yarn run lint --fix && rimraf ./out && yarn run compile ",
"test": "node ./out/test/runTest.js",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "yarn run pretest",
"vscode:package": "vsce package --out out",
"vscode:publish": "vsce publish"
},
"devDependencies": {
"@types/color": "3.0.3",
"@types/glob": "7.2.0",
"@types/mocha": "9.1.0",
"@types/node": "17.0.15",
"@types/sinon": "10.0.10",
"@types/vscode": "1.64.0",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"glob": "7.2.0",
"husky": "7.0.4",
"lint-staged": "12.3.3",
"mocha": "9.2.0",
"prettier": "2.5.1",
"sinon": "13.0.1",
"typescript": "4.5.5",
"vsce": "2.6.7",
"vscode-test": "1.6.1"
},
"dependencies": {
"color": "^4.2.0"
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}