-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
93 lines (93 loc) · 3.84 KB
/
deno.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@wok/helmet-mods",
"version": "0.0.0",
"exports": {
"./fdb-cluster": "./src/mods/fdb_cluster/fdb_cluster.ts",
"./github-actions-registry": "./src/mods/github_actions_registry/github_actions_registry.ts",
"./gitlab-cicd-registry": "./src/mods/gitlab_cicd_registry/gitlab_cicd_registry.ts",
"./grafana-syncer": "./src/mods/grafana_syncer/grafana_syncer.ts",
"./iac-version-bumper": "./src/mods/iac_version_bumper/iac_version_bumper.ts",
"./k8s-job-autoscaler": "./src/mods/k8s_job_autoscaler/k8s_job_autoscaler.ts",
"./openapi-merger": "./src/mods/openapi_merger/openapi_merger.ts",
"./prometheus-operator": "./src/mods/prometheus_operator/prometheus_operator.ts",
"./registry-authenticator": "./src/mods/registry_authenticator/registry_authenticator.ts",
"./registry-syncer": "./src/mods/registry_syncer/registry_syncer.ts",
"./resource-group": "./src/mods/resource_group/resource_group.ts",
"./tailscale-router": "./src/mods/tailscale_router/tailscale_router.ts",
"./tako": "./src/mods/tako/tako.ts",
"./tako/lib": "./src/mods/tako/lib.ts",
"./apps/tako": "./src/apps/tako/tako.ts",
"./deps/async-utils": "./src/deps/async_utils.ts",
"./deps/case": "./src/deps/case.ts",
"./deps/cli-utils": "./src/deps/cli_utils.ts",
"./deps/exec-utils": "./src/deps/exec_utils.ts",
"./deps/helmet": "./src/deps/helmet.ts",
"./deps/immer": "./src/deps/immer.ts",
"./deps/k8s-openapi": "./src/deps/k8s_openapi.ts",
"./deps/openapi-merge": "./src/deps/openapi_merge.ts",
"./deps/rxjs": "./src/deps/rxjs.ts",
"./deps/std-encoding": "./src/deps/std_encoding.ts",
"./deps/std-fmt-colors": "./src/deps/std_fmt_colors.ts",
"./deps/std-fs": "./src/deps/std_fs.ts",
"./deps/std-http": "./src/deps/std_http.ts",
"./deps/std-path": "./src/deps/std_path.ts",
"./deps/std-stream": "./src/deps/std_stream.ts",
"./deps/std-testing": "./src/deps/std_testing.ts",
"./deps/std-yaml": "./src/deps/std_yaml.ts",
"./deps/prometheus": "./src/deps/prometheus.ts",
"./deps/schema": "./src/deps/schema.ts",
"./deps/validation-utils": "./src/deps/validation_utils.ts"
},
"publish": {
"include": ["./src", "./deno.json", "./README.md", "./LICENSE"]
},
"tasks": {
"update_cache": "rm -f ./deno.lock && deno cache ./src/deps/*"
},
"fmt": {
"include": [
"src/",
"test/",
"nix/**/*.ts"
],
"lineWidth": 120
},
"lint": {
"rules": {
"exclude": ["no-slow-types"]
}
},
"imports": {
"$deps/": "./src/deps/",
"$libs/": "./src/libs/",
"$apps/": "./src/apps/",
"@aws-sdk/client-ec2": "npm:@aws-sdk/client-ec2@^3.766.0",
"@octokit/webhooks-types": "npm:@octokit/webhooks-types@^7.6.1",
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/async": "jsr:@std/async@^1.0.11",
"@std/collections": "jsr:@std/collections@^1.0.10",
"@std/crypto": "jsr:@std/crypto@^1.0.4",
"@std/encoding": "jsr:@std/encoding@^1.0.7",
"@std/fmt": "jsr:@std/fmt@^1.0.6",
"@std/fs": "jsr:@std/fs@^1.0.14",
"@std/http": "jsr:@std/http@^1.0.13",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/streams": "jsr:@std/streams@^1.0.9",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"@wok/case": "jsr:@wok/case@^1.0.2",
"@wok/deup": "jsr:@wok/deup@^3.0.0",
"@wok/helmet": "jsr:@wok/helmet@^4.0.5",
"@wok/k8s-api": "jsr:@wok/k8s-api@^1.32.2",
"@wok/k8s-utils": "jsr:@wok/k8s-utils@^2.2.1",
"@wok/openapi-client": "jsr:@wok/openapi-client@^1.0.2",
"@wok/prometheus": "jsr:@wok/prometheus@^1.0.2",
"@wok/schema": "jsr:@wok/schema@^3.0.0",
"@wok/typebox": "jsr:@wok/typebox@^2.0.0",
"@wok/utils": "jsr:@wok/utils@^5.1.2",
"immer": "npm:immer@^10.1.1",
"jose": "npm:jose@^6.0.9",
"openapi-merge": "npm:openapi-merge@^1.3.3",
"rxjs": "npm:rxjs@^7.8.2",
"type-fest": "npm:type-fest@^4.37.0"
}
}