-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "cssmodules-language-server",
"version": "1.4.1",
"description": "language server for cssmodules",
"bin": {
"cssmodules-language-server": "./lib/cli.js"
},
"scripts": {
"clean": "rimraf lib *.tsbuildinfo",
"build": "tsc",
"watch": "tsc --watch",
"lint": "biome check ./src biome.json",
"format": "biome format --write ./src biome.json",
"test": "vitest --run",
"preversion": "npm-run-all clean build lint test",
"postversion": "npm publish && git push --follow-tags"
},
"keywords": [
"language-server",
"css-modules",
"cssmodules"
],
"author": "antonk52",
"license": "MIT",
"main": "lib/connection.js",
"files": [
"lib/*.{js,d.ts}",
"lib/!(spec)/**/*.{js,d.ts}"
],
"devDependencies": {
"@biomejs/biome": "1.6.2",
"@types/lodash.camelcase": "^4.3.9",
"@types/node": "^18.19.26",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"dependencies": {
"json5": "^2.2.3",
"lilconfig": "^3.1.1",
"lodash.camelcase": "^4.3.0",
"postcss": "^8.1.10",
"postcss-less": "^6.0.0",
"postcss-sass": "^0.5.0",
"postcss-scss": "^4.0.9",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
},
"funding": "https://github.com/sponsors/antonk52",
"engines": {
"node": ">=18"
}
}