This commit is contained in:
lhx-666-cool
2025-04-25 17:03:25 +08:00
parent 326a2a007c
commit f6cb277519
1677 changed files with 1232721 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
{
"name": "codemirror-languageserver",
"version": "1.12.1",
"description": "Language Server Plugin for CodeMirror 6",
"main": "dist/index.js",
"scripts": {
"prepare": "rollup -c rollup.config.js"
},
"author": {
"name": "Mahmud Ridwan",
"email": "m@hjr265.me",
"url": "https://hjr265.me"
},
"homepage": "https://github.com/FurqanSoftware/codemirror-languageserver",
"bugs": {
"url": "https://github.com/FurqanSoftware/codemirror-languageserver/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/FurqanSoftware/codemirror-languageserver.git"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"prettier": "^2.2.1",
"rollup": "^2.75.7",
"rollup-plugin-ts": "^3.0.2",
"tslint": "^5.20.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.4",
"@codemirror/lint": "^6.8.4",
"@codemirror/state": "^6.5.1",
"@codemirror/view": "^6.36.2",
"@open-rpc/client-js": "^1.8.1",
"marked": "^15.0.6",
"vscode-languageserver-protocol": "^3.17.5"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
}
}