-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
141 lines (141 loc) · 3.59 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
136
137
138
139
140
141
{
"name": "vscode-html-css",
"displayName": "HTML CSS Support",
"description": "CSS Intellisense for HTML",
"version": "2.0.12",
"license": "MIT",
"publisher": "ecmel",
"author": {
"name": "Ecmel Ercan",
"url": "https://ecmel.dev/"
},
"sponsor": {
"url": "https://github.com/sponsors/ecmel"
},
"repository": {
"type": "git",
"url": "https://github.com/ecmel/vscode-html-css.git"
},
"bugs": "https://github.com/ecmel/vscode-html-css/issues",
"homepage": "https://github.com/ecmel/vscode-html-css",
"categories": [
"Programming Languages"
],
"keywords": [
"css",
"html",
"twig",
"blade",
"django",
"nunjucks",
"mustache",
"angular",
"react",
"vue",
"ejs",
"lit",
"lit-html",
"bootstrap",
"template",
"javascript",
"typescript",
"maud",
"rust",
"multi-root ready"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "CSS Settings",
"properties": {
"css.enabledLanguages": {
"type": "array",
"scope": "application",
"description": "List of languages which suggestions are desired.",
"default": [
"html"
]
},
"css.styleSheets": {
"type": "array",
"scope": "resource",
"description": "List of local or remote style sheets for suggestions.",
"default": []
},
"css.autoValidation": {
"type": "string",
"scope": "resource",
"description": "When to validate class selectors.",
"default": "Never",
"enum": [
"Never",
"Save",
"Always"
]
}
}
},
"commands": [
{
"command": "vscode-html-css.validate",
"title": "CSS: Validate class selectors"
},
{
"command": "vscode-html-css.clear",
"title": "CSS: Clear style sheets cache"
}
]
},
"capabilities": {
"untrustedWorkspaces": {
"supported": false
},
"virtualWorkspaces": true
},
"main": "./dist/extension.js",
"icon": "icon.png",
"scripts": {
"clean": "git clean -Xdf",
"prereset": "npm run clean",
"reset": "npm install",
"format": "prettier --ignore-path .gitignore -w --list-different .",
"debug": "rollup -c --configPlugin typescript -w",
"build": "rollup -c --configPlugin typescript --forceExit",
"compile": "tsc -p ./ --outDir out --sourceMap true --module commonjs --moduleResolution node",
"pretest": "npm run build && npm run compile",
"test": "node ./out/test/runTest.js",
"coverage": "c8 -n out/src npm run test",
"update": "npx npm-check-updates -u -x prettier -x @types/vscode",
"vscode:prepublish": "npm run build",
"package": "vsce package",
"publish": "vsce publish"
},
"engines": {
"vscode": "^1.86.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/line-column": "^1.0.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.17",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.86.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.32.0",
"c8": "^9.1.0",
"fast-glob": "^3.3.2",
"line-column": "^1.0.2",
"mocha": "^10.3.0",
"prettier": "^2.8.8",
"rollup": "^4.22.4",
"rollup-plugin-cleandir": "^2.0.0",
"sinon": "^17.0.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}