-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
55 lines (55 loc) · 1.77 KB
/
deno.json
File metadata and controls
55 lines (55 loc) · 1.77 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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@intzaaa/daily-planner",
"exports": "./src/index.ts",
"license": "AGPL-3.0-only",
"version": "0.0.1",
"tasks": {
"check": "deno check ./src/**/*.ts && deno lint",
"prepare": "deno fmt && deno check ./src/**/*.ts && deno lint --fix",
"build": "deno compile -o ./dist/dp.exe -A ./src/index.ts",
"start": "deno -A ./src/index.ts",
"test": "deno -A ./src/test.ts",
"update": "deno outdated --update --latest"
},
"imports": {
"@intzaaa/maybe": "npm:@intzaaa/maybe@^3.1.3",
"@typed/curry": "npm:@typed/curry@^1.0.1",
"@vercel/ncc": "npm:@vercel/ncc@^0.38.3",
"ramda": "https://deno.land/x/ramda@v0.27.2/mod.ts",
"chalk": "npm:chalk@^5.4.1",
"dayjs": "npm:dayjs@^1.11.13",
"ical.js": "npm:ical.js@^2.1.0",
"openai": "npm:openai@^4.85.3",
"recursive-diff": "npm:recursive-diff@^1.0.9",
"zod": "npm:zod@^3.24.2",
"@types/node": "npm:@types/node@^22.13.4"
},
"lint": {
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any", "require-await"]
}
},
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"strictBuiltinIteratorReturn": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"allowUnusedLabels": true,
"allowUnreachableCode": true
}
}