-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.41 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
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": "5.3.0",
"description": "Language Server Protocol (LSP) implementation for TypeScript using tsserver",
"author": "TypeFox and others",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/typescript-language-server/typescript-language-server.git"
},
"type": "module",
"engines": {
"node": ">=22.22.2"
},
"packageManager": "pnpm@11.2.2",
"files": [
"lib"
],
"bin": {
"typescript-language-server": "lib/cli.mjs"
},
"scripts": {
"dev": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript --watch",
"build": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript",
"clean": "rimraf lib *.tsbuildinfo",
"test": "cross-env CONSOLE_LOG_LEVEL=warning vitest --coverage",
"test:commit": "cross-env CONSOLE_LOG_LEVEL=warning vitest run",
"lint": "eslint --ext \".js,.ts\" src",
"fix": "eslint --ext \".js,.ts\" --fix src",
"size": "pnpm build && size-limit",
"postversion": "git push --follow-tags",
"prepare": "husky"
},
"eslintIgnore": [
"!.eslintrc.cjs"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@size-limit/file": "^12.1.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.19.19",
"@types/semver": "^7.7.1",
"@types/which": "^3.0.4",
"@vitest/coverage-v8": "4.1.7",
"@vitest/eslint-plugin": "^1.6.17",
"commander": "^14.0.3",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"deepmerge": "^4.3.1",
"eslint": "^10.4.0",
"fs-extra": "^11.3.5",
"globals": "^17.6.0",
"husky": "^9.1.7",
"p-debounce": "^5.1.0",
"package-up": "^5.0.0",
"rimraf": "^6.1.3",
"rollup": "^4.60.4",
"semver": "^7.8.1",
"size-limit": "^12.1.0",
"source-map-support": "^0.5.21",
"tempy": "^3.2.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.7",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "1.0.12",
"vscode-uri": "^3.1.0",
"which": "^7.0.0",
"why-is-node-running": "^3.2.2"
}
}