-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.jsonc
More file actions
45 lines (45 loc) · 1023 Bytes
/
deno.jsonc
File metadata and controls
45 lines (45 loc) · 1023 Bytes
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
{
"description": "A type-safe and composable meta architecture for modular monolith development.",
"keywords": [
"modular-monolith",
"typescript",
"architecture",
"agent-skills",
"agentic-coding"
],
"license": "CC BY 4.0",
"author": "",
"type": "module",
"tasks": {
"run:example": "deno run skill/examples/example.ts",
"lint": "deno lint --fix && deno fmt",
"check": "deno lint && deno fmt --check --ignore=\"*.ipynb\"" // Deno always report Jupyter Notebooks as unformatted for no reason
},
"imports": {
"@needle-di/core": "jsr:@needle-di/core@^1.1.1"
},
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"]
},
"fmt": {
"indentWidth": 4,
"lineWidth": 100,
"useTabs": true,
"singleQuote": true,
"proseWrap": "never"
},
"lint": {
"rules": {
"tags": ["recommended"],
"exclude": [
"ban-types",
"no-this-alias"
]
}
}
}