-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "@pipelineui/yaml-editor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup"
},
"exports": {
"./language-server": {
"types": "./dist/lsp/index.d.mts",
"import": "./dist/lsp/index.mjs"
}
},
"keywords": [],
"author": {
"name": "Riccardo Perra",
"email": "riccardo.perra@icloud.com",
"url": "https://github.com/riccardoperra"
},
"license": "MIT",
"dependencies": {
"@codemirror/autocomplete": "^6.18.2",
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-yaml": "^6.1.1",
"@codemirror/language": "^6.10.3",
"@codemirror/legacy-modes": "^6.4.1",
"@codemirror/lint": "^6.8.2",
"@codemirror/merge": "^6.7.2",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.1",
"@mdx-js/mdx": "^3.1.0",
"@open-rpc/client-js": "^1.8.1",
"solid-js": "^1.9.3",
"vscode-languageserver-protocol": "^3.17.5"
},
"devDependencies": {
"prettier": "^3.3.3",
"tsup": "^8.3.5"
}
}