-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.31 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
{
"name": "typescript-language-server",
"version": "2.0.1",
"description": "Language Server Protocol (LSP) implementation for TypeScript using tsserver",
"author": "TypeFox and others",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/typescript-language-server/typescript-language-server.git"
},
"type": "module",
"engines": {
"node": ">=14.16"
},
"files": [
"lib"
],
"bin": {
"typescript-language-server": "./lib/cli.js"
},
"scripts": {
"clean": "rimraf lib *.tsbuildinfo",
"test": "cross-env CONSOLE_LOG_LEVEL=warning TS_NODE_PROJECT=./tsconfig.json mocha",
"test:watch": "cross-env CONSOLE_LOG_LEVEL=warning TS_NODE_PROJECT=./tsconfig.json mocha --watch",
"test:compiled": "cross-env CONSOLE_LOG_LEVEL=warning mocha \"./lib/**/*.spec.js\"",
"lint": "eslint --ext \".js,.ts\" src",
"fix": "eslint --ext \".js,.ts\" --fix src",
"build": "concurrently -n compile,lint -c blue,green \"yarn compile\" \"yarn lint\"",
"compile": "tsc -b",
"watch": "tsc -b --watch --verbose",
"postversion": "git push --follow-tags",
"prepare": "cd test-data/jsx && yarn"
},
"eslintIgnore": [
"!.eslintrc.cjs"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn build && yarn test:compiled",
"post-merge": "yarn"
}
},
"dependencies": {
"commander": "^9.4.1",
"deepmerge": "^4.2.2",
"fs-extra": "^10.1.0",
"p-debounce": "^4.0.0",
"pkg-up": "^4.0.0",
"semver": "^7.3.8",
"tempy": "^3.0.0",
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-protocol": "^3.17.2",
"vscode-languageserver-textdocument": "1.0.7",
"vscode-uri": "^3.0.6",
"which": "^2.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/deepmerge": "^2.2.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^10.0.0",
"@types/node": "^16.11.64",
"@types/semver": "^7.3.12",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"chai": "^4.3.6",
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"husky": "4.x",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}