-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (92 loc) · 2.98 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "typescript-language-server",
"version": "3.3.2",
"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.17"
},
"files": [
"lib"
],
"bin": {
"typescript-language-server": "./lib/cli.mjs"
},
"scripts": {
"clean": "rimraf lib *.tsbuildinfo",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules CONSOLE_LOG_LEVEL=warning jest",
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules CONSOLE_LOG_LEVEL=warning jest --watch",
"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": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript",
"watch": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript --watch",
"size": "yarn build && yarn size-limit",
"postversion": "git push --follow-tags",
"prepare": "cd test-data/jsx && yarn",
"pkg": "yarn compile && pkg -c package.json lib/cli.cjs"
},
"eslintIgnore": [
"!.eslintrc.cjs"
],
"husky": {
"hooks": {
}
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@size-limit/file": "^8.2.4",
"@types/deepmerge": "^2.2.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.0",
"@types/node": "^16.18.23",
"@types/semver": "^7.3.13",
"@types/which": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"babel-jest": "^29.5.0",
"commander": "^10.0.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"deepmerge": "^4.3.1",
"eslint": "^8.38.0",
"eslint-plugin-jest": "^27.2.1",
"fs-extra": "^11.1.1",
"husky": "4.x",
"jest": "^29.5.0",
"p-debounce": "^4.0.0",
"pkg": "^5.8.1",
"pkg-up": "^4.0.0",
"rimraf": "^5.0.0",
"rollup": "^3.20.2",
"semver": "^7.4.0",
"size-limit": "^8.2.4",
"source-map-support": "^0.5.21",
"tempy": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-protocol": "^3.17.3",
"vscode-languageserver-textdocument": "1.0.8",
"vscode-uri": "^3.0.7",
"which": "^3.0.0"
},
"pkg": {
"assets": ["package.json", "node_modules/typescript/**"],
"outputPath": "dist",
"targets": [ "node18-linux-x64", "node18-linux-arm64", "node18-macos-x64", "node18-macos-arm64", "node18-win-x64", "node18-win-arm64" ]
}
}