-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.82 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
57
{
"name": "codemirror-languageserver",
"version": "1.22.1",
"description": "Language Server Plugin for CodeMirror 6",
"main": "dist/index.js",
"type": "module",
"scripts": {
"prepare": "rollup -c rollup.config.js",
"typecheck": "tsc --noEmit -p tsconfig.check.json",
"format:check": "prettier --check src",
"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.29.7",
"@babel/preset-env": "^7.29.7",
"@codemirror/commands": "^6.11.0",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.4",
"@codemirror/search": "^6.7.1",
"@rollup/plugin-babel": "^7.1.0",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"prettier": "^3.9.6",
"rollup": "^4.63.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"marked": "^18.0.11",
"vscode-languageserver-protocol": "^3.18.3"
},
"peerDependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/lint": "^6.9.7",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.9"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
}
}