-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
{
"name": "stylelint-lsp",
"version": "2.0.1",
"description": "A stylelint language server",
"keywords": [
"stylelint",
"lsp",
"language server",
"multi-root ready"
],
"repository": {
"type": "git",
"url": "https://github.com/bmatcuk/stylelint-lsp"
},
"author": "Bob Matcuk <[email protected]> (https://squeg.net)",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"stylelint-lsp": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepare": "run-s clean build && husky install",
"test": "jest --coverage",
"watch": "tsc -w -p tsconfig.build.json"
},
"lint-staged": {
"**/*.{j,t}s?(x)": "eslint --fix"
},
"devDependencies": {
"@types/jest": "~29.5.8",
"@typescript-eslint/eslint-plugin": "~6.11.0",
"@typescript-eslint/parser": "~6.11.0",
"eslint": "~8.54.0",
"eslint-config-prettier": "~9.0.0",
"eslint-plugin-jest": "~27.6.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint_d": "~13.1.0",
"husky": "^8.0.0",
"jest": "~29.7.0",
"lint-staged": "~15.1.0",
"npm-run-all": "~4.1.5",
"prettier": "~3.1.0",
"rimraf": "~5.0.5",
"ts-jest": "~29.1.1",
"typescript": "~5.2.2"
},
"dependencies": {
"fast-diff": "~1.3.0",
"resolve-from": "~5.0.0",
"stylelint": "~15.11.0",
"tslib": "~2.6.2",
"vscode-languageserver": "~9.0.1",
"vscode-languageserver-protocol": "~3.17.5",
"vscode-languageserver-textdocument": "~1.0.11",
"vscode-uri": "~3.0.8"
}
}