-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.28 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
{
"name": "vscode-coloured-status-bar-problems",
"displayName": "Coloured Status Bar Problems",
"description": "Adds coloured error counters to the statusbar",
"version": "0.2.0",
"license": "MIT",
"publisher": "bradzacher",
"repository": {
"type": "git",
"url": "https://github.com/bradzacher/vscode-coloured-status-bar-problems.git"
},
"author": {
"email": "brad.zacher@gmail.com",
"name": "Brad Zacher",
"url": "https://github.com/bradzacher"
},
"scripts": {
"vscode:prepublish": "yarn run clean && yarn run build",
"build": "tsc -b tsconfig.build.json",
"clean": "tsc -b tsconfig.build.json --clean",
"format": "prettier --write \"./**/*.{ts,js,json,md}\" --ignore-path ./.prettierignore",
"lint": "eslint . --ext .js,.ts --ignore-path ./.eslintignore",
"vscode:publish": "yarn vsce publish",
"pretest": "yarn run build",
"test": "node ./out/test/runTest.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"watch": "tsc -b tsconfig.build.json --watch"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/vscode": "^1.30.0",
"eslint-config-brad": "^4.0.0",
"glob": "^7.1.5",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3",
"vsce": "^1.69.0",
"vscode-test": "^1.2.2"
},
"//": "vscode extension settings",
"engines": {
"vscode": "^1.32.0"
},
"keywords": [
"problems",
"statusbar",
"colour",
"highlight"
],
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"extensionKind": [
"ui",
"workspace"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [],
"configuration": {
"title": "Coloured Status Bar Problems",
"type": "object",
"properties": {
"coloured-status-bar-problems.colour.error.active": {
"type": "string",
"description": "The colour when there is at least one problem of type error. This defaults to your theme's `problemsErrorIcon.foreground` colour."
},
"coloured-status-bar-problems.colour.warning.active": {
"type": "string",
"description": "The colour when there is at least one problem of type warning. This defaults to your theme's `problemsWarningIcon.foreground` colour."
},
"coloured-status-bar-problems.colour.info.active": {
"type": "string",
"description": "The colour when there is at least one problem of type info. This defaults to your theme's `problemsInfoIcon.foreground` colour."
},
"coloured-status-bar-problems.colour.error.none": {
"type": "string",
"description": "The colour when there are **no** problems of type error. This defaults to the default status bar text colour."
},
"coloured-status-bar-problems.colour.warning.none": {
"type": "string",
"description": "The colour when there are **no** problems of type warning. This defaults to the default status bar text colour."
},
"coloured-status-bar-problems.colour.info.none": {
"type": "string",
"description": "The colour when there are **no** problems of type info. This defaults to the default status bar text colour."
}
}
}
}
}