Bump typescript in /packages/codemirror-lsp-client in the patch group Bumps the patch group in /packages/codemirror-lsp-client with 1 update: [typescript](https://github.com/microsoft/TypeScript). Updates `typescript` from 5.8.2 to 5.8.3 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml) - [Commits](https://github.com/microsoft/TypeScript/commits) --- updated-dependencies: - dependency-name: typescript dependency-version: 5.8.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
926 B
JSON
36 lines
926 B
JSON
{
|
|
"name": "@kittycad/codemirror-lsp-client",
|
|
"version": "1.0.0",
|
|
"description": "An LSP client for the codemirror editor.",
|
|
"main": "src/index.ts",
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc"
|
|
},
|
|
"types": "dist/index.d.ts",
|
|
"module": "dist/index.js",
|
|
"type": "module",
|
|
"repository": "https://github.com/KittyCAD/modeling-app",
|
|
"author": "Zoo Engineering Team",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "6.18.6",
|
|
"@codemirror/language": "^6.11.0",
|
|
"@codemirror/state": "^6.5.2",
|
|
"@lezer/highlight": "^1.2.1",
|
|
"@ts-stack/markdown": "^1.5.0",
|
|
"json-rpc-2.0": "^1.7.0",
|
|
"typescript": "^5.8.3",
|
|
"vscode-languageserver-protocol": "^3.17.5",
|
|
"vscode-uri": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.14.0",
|
|
"ts-node": "^10.9.2"
|
|
}
|
|
}
|