-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.8 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
58
59
60
61
62
63
64
65
66
67
{
"name": "@health-samurai/aidbox-fhirpath-lsp",
"version": "0.0.0-alpha.8",
"type": "module",
"files": [
"dist",
"src"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"scripts": {
"build": "rm -rf dist && mkdir -p dist && swc src -d dist -D && tsc -b --force && vite build && echo success",
"build:watch": "tsx scripts/watch.node.ts",
"format": "biome format",
"format:check": "biome format",
"format:fix": "biome format --write",
"lint": "biome check",
"lint:check": "biome check",
"lint:fix": "biome check --write",
"tsc:check": "tsc -b --noEmit"
},
"dependencies": {
"@atomic-ehr/fhirpath": "0.1.4",
"@atomic-ehr/fhirpath-lsp": "0.0.7",
"@health-samurai/aidbox-client": "workspace:^"
},
"peerDependencies": {
"@codemirror/lsp-client": "^6.2.0",
"@codemirror/state": "^6.5.2",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.2",
"@codemirror/lint": "^6.9.5",
"@codemirror/lsp-client": "^6.2.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.40.0",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.18",
"@types/react": "^19.2.14",
"chokidar": "^5.0.0",
"tsdown": "^0.21.2",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vite": "^8.1.5",
"vitest": "^4.1.0",
"vscode-languageserver-types": "^3.17.5"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/HealthSamurai/aidbox-ts-sdk/tree/master/packages/aidbox-fhirpath-lsp#readme",
"repository": {
"type": "git",
"url": "https://github.com/HealthSamurai/aidbox-ts-sdk",
"directory": "packages/aidbox-fhirpath-lsp"
}
}