forked from FurqanSoftware/codemirror-languageserver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "codemirror-languageserver",
"version": "1.11.0",
"description": "Language Server Plugin for CodeMirror 6",
"main": "dist/index.js",
"scripts": {
"all": "run-s clean build",
"clean": "del-cli dist",
"build": "rollup -c --bundleConfigAsCjs rollup.config.js",
"prepare": "run-s build"
},
"author": {
"name": "Mahmud Ridwan",
"email": "[email protected]",
"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.16.2",
"@codemirror/lint": "^6.8.0",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.28.1",
"@open-rpc/client-js": "^1.8.1",
"vscode-languageserver-protocol": "^3.16.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
}
}