-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
50 lines (50 loc) · 1.22 KB
/
deno.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@flowcore/data-pump",
"description": "Flowcore Data Pump",
"version": "0.21.0",
"license": "MIT",
"exports": "./src/mod.ts",
"publish": {
"include": [
"src/**/*.ts",
"README.md",
"CHANGELOG.md"
]
},
"tasks": {},
"imports": {
"@date-fns/utc": "npm:@date-fns/utc@^2.1.0",
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@flowcore/sdk": "jsr:@flowcore/sdk@^1.78.0",
"@flowcore/sdk-oidc-client": "npm:@flowcore/sdk-oidc-client@^1.3.1",
"@flowcore/time-uuid": "jsr:@flowcore/time-uuid@^0.1.1",
"@sinclair/typebox": "npm:@sinclair/typebox@0.32.15",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/testing": "jsr:@std/testing@^1.0.6",
"date-fns": "npm:date-fns@^4.1.0",
"nats": "npm:nats@^2.29.1",
"prom-client": "npm:prom-client@^15.1.3",
"rxjs": "npm:rxjs@^7.8.1"
},
"fmt": {
"exclude": [
"node_modules",
"npm",
".github",
"CHANGELOG.md",
"integration"
],
"lineWidth": 120,
"indentWidth": 2,
"useTabs": false,
"semiColons": false
},
"lint": {
"exclude": [
"node_modules",
"npm",
"integration"
]
}
}