-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "codemirror-languageserver",
"version": "1.11.0",
"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",
"typescript": "^4.7.4"
},
"dependencies": {
"@codemirror/autocomplete": "^6.0.2",
"@codemirror/lint": "^6.0.0",
"@codemirror/state": "^6.1.0",
"@codemirror/view": "^6.0.2",
"@open-rpc/client-js": "^1.7.1",
"vscode-languageserver-protocol": "^3.16.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
}
}