-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
95 lines (95 loc) · 2.46 KB
/
deno.json
File metadata and controls
95 lines (95 loc) · 2.46 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@akin01/deno-redis",
"version": "0.1.1",
"description": "A modern, fully-typed Redis client for Deno with enhanced performance, comprehensive TypeScript support, and native JSR compatibility.",
"exports": {
".": "./mod.ts",
"./mod": "./mod.ts",
"./redis": "./redis.ts",
"./connection": "./connection.ts",
"./errors": "./errors.ts",
"./pipeline": "./pipeline.ts",
"./pubsub": "./pubsub.ts",
"./stream": "./stream.ts",
"./protocol": "./protocol/mod.ts",
"./protocol/command": "./protocol/command.ts",
"./protocol/reply": "./protocol/reply.ts",
"./protocol/types": "./protocol/types.ts",
"./command": "./command.ts",
"./executor": "./executor.ts",
"./backoff": "./backoff.ts",
"./utils": "./utils.ts"
},
"tasks": {
"test": "deno test --allow-net --allow-env tests/",
"test:watch": "deno test --allow-net --allow-env --watch tests/",
"verify": "deno run --allow-net --allow-env tests/verify_setup.ts",
"fmt": "deno fmt",
"lint": "deno lint",
"check": "deno check mod.ts",
"publish": "deno publish",
"publish:dry": "deno publish --dry-run",
"example:basic": "deno run -EN examples/basic.ts",
"example:pubsub": "deno run -EN examples/pubsub.ts",
"example:pipeline": "deno run -EN examples/pipeline.ts",
"example:streams": "deno run -EN examples/streams.ts",
"example:advanced": "deno run -EN examples/advanced.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/async": "jsr:@std/async@^1.0.13",
"@std/streams": "jsr:@std/streams@^1.0.10"
},
"exclude": [
"tests/",
"examples/",
"docker/",
".vscode",
"docker-compose.yml"
],
"fmt": {
"useTabs": true,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"include": [
"*.ts",
"protocol/*.ts",
"examples/*.ts",
"tests/*.ts"
],
"exclude": [
"*.md",
"deno.lock",
"docker/"
]
},
"lint": {
"include": [
"*.ts",
"protocol/*.ts"
],
"exclude": [
"tests/*",
"examples/*",
"docker/"
],
"rules": {
"tags": [
"recommended"
],
"include": [
"ban-untagged-todo"
],
"exclude": [
"no-unused-vars",
"no-explicit-any",
"explicit-function-return-type",
"explicit-module-boundary-types",
"no-inferrable-types"
]
}
}
}