-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 KB
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": "sense-css-module-server",
"version": "0.1.1",
"description": "Sense css module server",
"author": "iamcco <ooiss@qq.com>",
"license": "MIT",
"main": "out/index.js",
"keywords": [
"LSP",
"sense",
"css",
"module"
],
"scripts": {
"clean": "rimraf ./out",
"watch": "cross-env NODE_ENV=development node esbuild.js --watch",
"build": "cross-env NODE_ENV=production node esbuild.js",
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"prepare": "husky install && npm run clean && npm run build"
},
"bin": {
"sense-css-module-server": "./bin/index.js"
},
"files": ["./out"],
"devDependencies": {
"@types/node": "^18.7.19",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"cross-env": "^7.0.3",
"esbuild": "^0.15.9",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"postcss": "^8.4.16",
"postcss-less": "^6.0.0",
"postcss-modules": "^5.0.0",
"postcss-scss": "^4.0.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.3",
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.7",
"vscode-uri": "^3.0.6",
"which": "^2.0.2"
}
}