-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 4.09 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
127
128
129
130
131
132
133
134
135
{
"name": "vscode-better-css-stacking-contexts",
"displayName": "Better CSS Stacking Contexts",
"description": "Highlights CSS stacking contexts and ineffective z-index declarations in VS Code.",
"author": "Mike Rheault",
"publisher": "mikerheault",
"icon": "images/better-stacking-contexts-icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrheault/vscode-better-css-stacking-contexts"
},
"bugs": {
"url": "https://github.com/mrheault/vscode-better-css-stacking-contexts/issues"
},
"homepage": "https://github.com/mrheault/vscode-better-css-stacking-contexts#readme",
"keywords": [
"css",
"scss",
"stacking context",
"z-index"
],
"version": "1.2.0",
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Linters",
"Programming Languages",
"Other"
],
"activationEvents": [
"onLanguage:css",
"onLanguage:scss"
],
"pricing": "Free",
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "stackingContexts.refreshView",
"title": "Refresh Stacking Contexts",
"icon": "$(sync)"
}
],
"menus": {
"view/title": [
{
"when": "view == stackingContextsView",
"command": "stackingContexts.refreshView",
"group": "navigation"
}
]
},
"configuration": {
"title": "Better Stacking Contexts",
"properties": {
"betterStackingContexts.decorationColor": {
"type": "string",
"default": "editorInfo.foreground",
"description": "Color of the decoration used to highlight stacking contexts."
},
"betterStackingContexts.backgroundColor": {
"type": "string",
"default": "editor.hoverHighlightBackground",
"description": "Background color used to highlight stacking contexts."
},
"betterStackingContexts.messageText": {
"type": "string",
"default": " 🤐 This property creates a new stacking context",
"description": "Message text displayed as a decoration."
},
"betterStackingContexts.stackingContextMethod": {
"type": "string",
"default": "isolation",
"enum": [
"position",
"isolation"
],
"enumDescriptions": [
"Use `position: relative;` to create a stacking context.",
"Use `isolation: isolate;` to create a stacking context."
],
"description": "Method to use for creating a new stacking context."
}
}
},
"views": {
"explorer": [
{
"id": "stackingContextsView",
"name": "Stacking Contexts",
"type": "tree",
"treeDataProviderId": "stackingContextsProvider"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/lodash": "^4.17.7",
"@types/lodash.debounce": "^4.0.9",
"@types/mocha": "^10.0.9",
"@types/node": "20.x",
"@types/vscode": "^1.91.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.1",
"date-fns": "^3.6.0",
"dedent": "^1.5.3",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"lodash.debounce": "^4.0.8",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.3",
"typescript": "^5.4.5",
"vscode-cache": "^0.3.0"
}
}