-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
186 lines (186 loc) · 5.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
{
"version": "0.17.0",
"name": "stylable-intelligence",
"description": "Stylable Language Services - syntax highlighting, completions, hinting and more for the Stylable CSS toolchain.",
"icon": "images/icon.png",
"main": "./dist/src/index.js",
"license": "BSD-3-Clause",
"types": "./dist/src/index.d.ts",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"watch": "tsc -w",
"pretest": "npm run lint",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "mocha \"test/unit/**/*.spec.ts\" \"test/unit/*.spec.ts\"",
"pretest:e2e": "npm run build",
"test:e2e": "node ./run-e2e-tests",
"lint": "eslint",
"prepack": "npm run clean && npm run build"
},
"dependencies": {
"@file-services/node": "^9.4.1",
"@stylable/core": "^6.1.1",
"@stylable/language-service": "^6.1.1",
"postcss-safe-parser": "^7.0.1",
"semver": "^7.6.3",
"typescript": "~5.6.3",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@file-services/commonjs": "^9.4.1",
"@file-services/memory": "^9.4.1",
"@file-services/types": "^9.4.1",
"@ts-tools/node": "^6.0.0",
"@types/chai": "^4.3.20",
"@types/glob": "^8.1.0",
"@types/js-beautify": "^1.14.3",
"@types/mocha": "^10.0.9",
"@types/node": "20",
"@types/postcss-safe-parser": "^5.0.4",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"@types/vscode": "1.90.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"chai": "^4.3.10",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^11.0.0",
"mocha": "^10.8.2",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"typescript-eslint": "^8.12.2"
},
"author": "Tom Raviv",
"publisher": "wix",
"repository": {
"type": "git",
"url": "https://github.com/wix/stylable-intelligence.git"
},
"bugs": {
"url": "https://github.com/wix/stylable-intelligence/issues"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"contributes": {
"languages": [
{
"id": "stylable",
"aliases": [
"Stylable"
],
"extensions": [
".st.css"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "stylable",
"scopeName": "source.stylable",
"path": "./syntaxes/stylable.tmLanguage.json"
}
],
"configuration": {
"title": "Stylable Intelligence",
"properties": {
"stylable.formatting.newLineBetweenSelectors": {
"type": "boolean",
"default": true,
"description": "Add a newline between multiple selectors in a ruleset"
},
"stylable.formatting.newLineBetweenRulesets": {
"type": "boolean",
"default": true,
"description": "Add a newline between CSS rulesets"
},
"stylable.formatting.endOfLine": {
"type": "string",
"default": "\\n",
"enum": [
"\\n",
"\\r",
"\\n\\r",
"\\r\\n"
],
"description": "End of Line control character to use"
},
"stylable.formatting.endWithNewLine": {
"type": "boolean",
"default": true,
"description": "End Stylable files with a new line"
},
"stylable.formatting.experimental": {
"type": "boolean",
"default": false,
"description": "Use the new experimental formatter (only supports the following configurations: endWithNewline, indentSize, and wrapLineLength)"
},
"stylable.formatting.wrapLineLength": {
"type": "integer",
"default": 80,
"description": "Desired line length before wrapping (only works with experimental formatter)"
},
"stylable.diagnostics.ignore": {
"type": "array",
"scope": "window",
"default": [],
"description": "Array of files and folders to ignore when outputting diagnostics. Paths are relative to project root. No glob/regex patterns allowed."
}
}
}
},
"activationEvents": [
"onLanguage:stylable"
],
"files": [
"dist/src",
"service.js",
"service.d.ts"
],
"badges": [
{
"url": "https://img.shields.io/vscode-marketplace/v/wix.stylable-intelligence.svg",
"href": "https://marketplace.visualstudio.com/items?itemName=wix.stylable-intelligence",
"description": "Stylable Intelligence on the VSCode marketplace"
},
{
"url": "https://github.com/wix/stylable-intelligence/workflows/tests/badge.svg",
"href": "https://travis-ci.org/wix/stylable-intelligence",
"description": "Stylable Intelligence build on GitHub Actions"
},
{
"url": "https://badge.fury.io/js/stylable-intelligence.svg",
"href": "https://badge.fury.io/js/stylable-intelligence",
"description": "Stylable Intelligence package on NPM"
}
],
"testGlob": "./dist/test/**/*.test.js?(x)",
"homepage": "https://github.com/wix/stylable-intelligence#readme",
"keywords": [
"typescript",
"stylable",
"css"
],
"__metadata": {
"id": "6e13e3c6-b9c7-4a06-8f00-ed4f7db83f0b",
"publisherDisplayName": "Wix",
"publisherId": "7a344d8a-64ec-42a7-9255-9eacf94e746a",
"isPreReleaseVersion": false
}
}