-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2 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
68
69
70
71
{
"name": "@atomic-fhir/framework",
"version": "0.1.0",
"description": "FHIR-native web framework for JavaScript/Bun",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit && npm run typecheck:examples",
"typecheck:examples": "for dir in examples/*/; do (cd $dir && bun run typecheck); done",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write '**/*.{ts,tsx,json,md}'",
"format:check": "prettier --check '**/*.{ts,tsx,json,md}'",
"build": "bun run build:packages",
"build:packages": "cd packages/core && bun run build",
"publish:core": "cd packages/core && npm publish --access public",
"example:minimal": "cd examples/minimal-server && bun run dev",
"example:basic": "cd examples/basic-server && bun run dev",
"example:custom": "cd examples/custom-handlers-server && bun run dev",
"example:r4-core": "cd examples/r4-core-server && bun run dev",
"example:us-core": "cd examples/us-core-server && bun run dev",
"prepare": "husky install"
},
"dependencies": {
"bun": "latest",
"find-my-way": "^8.1.0",
"tar": "^6.2.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"bun-types": "latest",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"typescript": "^5.3.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"keywords": [
"fhir",
"healthcare",
"framework",
"bun",
"atomic",
"hl7",
"interoperability"
],
"author": "",
"license": "MIT",
"engines": {
"bun": ">=1.0.0"
}
}