-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@marimo-team/codemirror-languageserver",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"version": "1.13.5",
"description": "Language Server Plugin for CodeMirror 6",
"files": ["dist"],
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"prepare": "tsc",
"dev": "vite",
"build": "tsc",
"build:demo": "vite build",
"lint": "biome check --write",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"test": "vitest"
},
"homepage": "https://github.com/marimo-team/codemirror-languageserver",
"bugs": {
"url": "https://github.com/marimo-team/codemirror-languageserver/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/marimo-team/codemirror-languageserver.git"
},
"license": "BSD-3-Clause",
"peerDependencies": {
"@codemirror/state": "^6",
"@codemirror/view": "^6"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.2",
"@codemirror/lang-javascript": "^6.2.2",
"codemirror": "^6.0.1",
"events": "^3.3.0",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.5"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.4",
"@codemirror/lint": "^6.8.4",
"@open-rpc/client-js": "^1.8.1",
"marked": "^15.0.6",
"vscode-languageserver-protocol": "^3.17.5"
}
}