New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

typescript-language-server

Package Overview
Dependencies
Maintainers
3
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typescript-language-server - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

lib/cli.mjs

12

CHANGELOG.md
# Changelog
All notable changes to this project will be documented in this file.
## [3.0.2](https://github.com/typescript-language-server/typescript-language-server/compare/v3.0.1...v3.0.2) (2023-01-14)
### Bug Fixes
* remove hard dependency on typescript ([#661](https://github.com/typescript-language-server/typescript-language-server/issues/661)) ([9a2e2c8](https://github.com/typescript-language-server/typescript-language-server/commit/9a2e2c83d4992cd90cebc706618a9af604fcf1a9))
### Refactors
* bundle with rollup and switch to jest for testing ([#663](https://github.com/typescript-language-server/typescript-language-server/issues/663)) ([2c9eb63](https://github.com/typescript-language-server/typescript-language-server/commit/2c9eb632659a3bb9995095576afe88e84833bbdd))
## [3.0.1](https://github.com/typescript-language-server/typescript-language-server/compare/v3.0.0...v3.0.1) (2022-12-30)

@@ -5,0 +17,0 @@

68

package.json
{
"name": "typescript-language-server",
"version": "3.0.1",
"version": "3.0.2",
"description": "Language Server Protocol (LSP) implementation for TypeScript using tsserver",

@@ -19,14 +19,13 @@ "author": "TypeFox and others",

"bin": {
"typescript-language-server": "./lib/cli.js"
"typescript-language-server": "./lib/cli.mjs"
},
"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\"",
"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": "tsc -b",
"watch": "tsc -b --watch --verbose",
"compile": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript",
"watch": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript --watch",
"postversion": "git push --follow-tags",

@@ -40,14 +39,42 @@ "prepare": "cd test-data/jsx && yarn"

"hooks": {
"pre-commit": "yarn lint && yarn build && yarn test:compiled",
"pre-commit": "yarn lint && yarn test && yarn build",
"post-merge": "yarn"
}
},
"dependencies": {
"commander": "^9.4.1",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/deepmerge": "^2.2.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.2.5",
"@types/node": "^16.18.11",
"@types/semver": "^7.3.13",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-jest": "^29.3.1",
"commander": "^9.5.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"deepmerge": "^4.2.2",
"eslint": "^8.31.0",
"eslint-plugin-jest": "^27.2.1",
"fs-extra": "^11.1.0",
"husky": "4.x",
"jest": "^29.3.1",
"p-debounce": "^4.0.0",
"pkg-up": "^4.0.0",
"rimraf": "^4.0.4",
"rollup": "^3.10.0",
"semver": "^7.3.8",
"source-map-support": "^0.5.21",
"tempy": "^3.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vscode-languageserver": "^8.0.2",

@@ -58,24 +85,3 @@ "vscode-languageserver-protocol": "^3.17.2",

"which": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/deepmerge": "^2.2.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.11",
"@types/semver": "^7.3.13",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"chai": "^4.3.7",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"husky": "4.x",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc