-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
70 lines (70 loc) · 2.36 KB
/
Copy pathdeno.json
File metadata and controls
70 lines (70 loc) · 2.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
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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@flowcore/hono-api",
"description": "Flowcore Hono API Builder",
"version": "0.4.0",
"license": "MIT",
"exports": {
".": "./src/mod.ts",
"./otel": "./src/otel/mod.ts"
},
"publish": {
"include": [
"src/**/*.ts",
"README.md",
"CHANGELOG.md"
]
},
"tasks": {
"build:npm": "deno run -A bin/build-npm.ts",
"test": "deno test --allow-all test/",
"test:watch": "deno test --allow-all --watch test/",
"test:coverage": "deno test --allow-all --coverage=coverage test/",
"typecheck": "deno check src/**/*.ts test/**/*.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.42.1",
"@flowcore/pathways": "npm:@flowcore/pathways@^0.16.2",
"@hono/otel": "npm:@hono/otel@^0.2.2",
"@hono/prometheus": "npm:@hono/prometheus@^1.0.2",
"@hono/zod-openapi": "npm:@hono/zod-openapi@^0.19.6",
"@jabr/xxhash64": "jsr:@jabr/xxhash64@^2.0.0",
"@opentelemetry/api": "npm:@opentelemetry/api@^1.9.0",
"@opentelemetry/auto-instrumentations-node": "npm:@opentelemetry/auto-instrumentations-node@^0.60.1",
"@opentelemetry/exporter-trace-otlp-http": "npm:@opentelemetry/exporter-trace-otlp-http@^0.202.0",
"@opentelemetry/instrumentation-fetch": "npm:@opentelemetry/instrumentation-fetch@^0.202.0",
"@opentelemetry/instrumentation-winston": "npm:@opentelemetry/instrumentation-winston@^0.47.0",
"@opentelemetry/sdk-node": "npm:@opentelemetry/sdk-node@^0.202.0",
"@opentelemetry/sdk-trace-node": "npm:@opentelemetry/sdk-trace-node@^2.0.1",
"@scalar/hono-api-reference": "npm:@scalar/hono-api-reference@^0.8.9",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/expect": "jsr:@std/expect@^1.0.16",
"@std/testing": "jsr:@std/testing@^1.0.14",
"@types/node": "npm:@types/node@^22.15.29",
"bun-sqlite-key-value": "npm:bun-sqlite-key-value@^1.13.1",
"hono": "npm:hono@^4.7.9",
"jose": "npm:jose@^6.0.11",
"prom-client": "npm:prom-client@^15.1.3",
"winston": "npm:winston@^3.17.0",
"zod": "npm:zod@^3.25.23"
},
"fmt": {
"exclude": [
".github",
"node_modules",
"npm",
"*.md"
],
"lineWidth": 120,
"indentWidth": 2,
"useTabs": false,
"semiColons": false,
"singleQuote": false
},
"lint": {
"exclude": [
"node_modules",
"npm"
]
}
}