-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.74 KB
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
48
49
50
51
52
53
54
55
56
{
"name": "codemirror-languageserver",
"version": "1.22.0",
"description": "Language Server Plugin for CodeMirror 6",
"main": "dist/index.js",
"type": "module",
"scripts": {
"prepare": "rollup -c rollup.config.js",
"build:gh-pages": "rollup -c rollup.config.gh-pages.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.28.0",
"@babel/preset-env": "^7.28.0",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/language": "^6.11.2",
"@codemirror/search": "^6.5.11",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"prettier": "^3.6.2",
"rollup": "^4.46.2",
"tslib": "^2.8.1",
"tslint": "^6.1.3",
"typescript": "^5.9.2"
},
"dependencies": {
"marked": "^16.1.2",
"vscode-languageserver-protocol": "^3.17.5"
},
"peerDependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/lint": "^6.8.5",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.1"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
}
}