-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "@stylable/language-service",
"version": "6.1.1",
"description": "Stylable Language Services - syntax highlighting, completions, hinting and more for the Stylable CSS preprocessor.",
"main": "dist/index.js",
"scripts": {
"test": "npm run test:unit",
"test:unit": "mocha \"dist/test/lib/**/*.spec.js\""
},
"peerDependencies": {
"typescript": ">=3.8"
},
"dependencies": {
"@file-services/types": "^9.4.1",
"@file-services/typescript": "^9.4.1",
"@stylable/code-formatter": "^6.1.1",
"@stylable/core": "^6.1.1",
"@tokey/core": "^1.4.0",
"@tokey/css-selector-parser": "^0.6.2",
"@tokey/css-value-parser": "^0.1.4",
"css-selector-tokenizer": "^0.8.0",
"postcss": "^8.4.49",
"postcss-value-parser": "^4.2.0",
"vscode-css-languageservice": "^6.3.2",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"vscode-languageserver-protocol": "^3.17.5"
},
"author": "Wix.com",
"files": [
"dist",
"!dist/test",
"src",
"!*/tsconfig.{json,tsbuildinfo}"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/wix/stylable/tree/master/packages/language-service",
"homepage": "https://github.com/wix/stylable/tree/master/packages/language-service",
"license": "MIT"
}