-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.36 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.36 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
{
"name": "bdi-kerncomponenten",
"version": "0.1.0",
"private": true,
"description": "Federated, chain-of-custody data exchange between independent parties — Associatie Register (ASR), Orkestratie Register (ORS), and Connector (CON). Reference implementation of the Dutch Basis Data Infrastructuur (BDI) protocol; generalisable to any domain where parties share data along a chain (logistics, healthcare, settlement, regulatory, energy).",
"license": "LicenseRef-PolyForm-Shield-1.0.0",
"packageManager": "bun@1.3.11",
"workspaces": [
"apps/*",
"packages/*",
"tests/*"
],
"scripts": {
"build": "bun run --filter='*' build",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:e2e": "bun test --cwd tests/e2e",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "tsc --noEmit -p tsconfig.json",
"clean": "rm -rf apps/*/dist packages/*/dist tests/*/dist node_modules/.cache",
"openapi:generate": "bun run scripts/generate-openapi.ts",
"docs:build": "bun run scripts/generate-openapi.ts && bun run scripts/build-docs.ts"
},
"devDependencies": {
"@transportial/openapi": "workspace:*",
"@types/bun": "^1.2.0",
"@types/node": "^22.10.0",
"dts-bundle-generator": "^9.5.1",
"marked": "^18.0.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"engines": {
"bun": ">=1.2.0"
}
}