-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.58 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
{
"name": "@atomic-ehr/fhirpath-lsp",
"version": "0.0.7",
"description": "Minimal FHIRPATH LSP server implementation",
"main": "out/server.node.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/atomic-ehr/fhirpath-lsp2.git"
},
"license": "MIT",
"exports": {
".": {
"bun": "./out/server.node.js",
"default": "./out/server.browser.js"
}
},
"scripts": {
"start": "bun debug/debug-server.ts",
"build": "bunx tsc -b",
"watch": "bunx tsc -b --watch",
"dev": "bun run build && code --extensionDevelopmentPath=`pwd`/client",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "bun tsc --noEmit",
"lsp:stdio": "bun src/server.ts --stdio",
"lsp:websocket": "bun src/server.ts --websocket",
"lsp:websocket:port": "bun src/server.ts --websocket --port=4000",
"debug": "bun debug/debug-server.ts --hot --watch",
"debug:bg": "bun debug/debug-server.ts --hot --watch &"
},
"dependencies": {
"@atomic-ehr/fhirpath": "^0.1.4",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.2",
"@codemirror/language": "^6.12.2",
"@codemirror/lint": "^6.9.5",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.17",
"codemirror": "^6.0.2",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
},
"devDependencies": {
"@types/node": "^20.19.37",
"typescript": "^5.9.3",
"@types/bun": "latest"
}
}