-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathdeno.jsonc
More file actions
61 lines (61 loc) · 1.74 KB
/
Copy pathdeno.jsonc
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"tasks": {
"llmn": "deno run --allow-read --allow-env --allow-run --allow-write cli.ts",
"test": "deno test --allow-read --allow-env --allow-run --allow-write" // Run with `deno task test`
},
"imports": {
"@cliffy/ansi": "jsr:@cliffy/ansi@^1.0.0-rc.7",
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7",
"@cliffy/prompt": "jsr:@cliffy/prompt@1.0.0-rc.7",
"@cliffy/table": "jsr:@cliffy/table@^1.0.0-rc.7",
"@cross/jwt": "jsr:@cross/jwt@^0.5.1",
"@cross/postgres": "jsr:@cross/postgres@^0.19.3",
"@getzep/zep-js": "npm:@getzep/zep-js@^2.0.2",
"@logtape/logtape": "jsr:@logtape/logtape@^0.9.0",
"@std/collections": "jsr:@std/collections@^1.0.10",
"@std/crypto": "jsr:@std/crypto@^1.0.4",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"@std/testing": "jsr:@std/testing@^1.0.0",
"@/config/templates/": "./config/",
"@/core/": "./src/core/",
"@/lib/": "./src/lib/",
"@/services/": "./services/",
"@/relayer/": "./src/relayer/",
"@/types": "./src/types/types.d.ts",
"@packageJson": "./package.json",
"@templateConfig": "./src/core/config/templates/config.0.3.0.json"
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "always",
"semiColons": false,
"exclude": [
"tmp/",
"examples/",
"import/",
"shared/",
"volumes/",
"*.yaml",
"*.yml"
]
},
"lint": {
"exclude": [
"tmp/",
"examples/",
"import/",
"shared/",
"volumes/",
"*.yaml",
"*.yml"
]
},
"test": {
"exclude": [".llemonstack/", "shared/", "volumes/", "import/", "tmp/"]
}
}