-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
48 lines (48 loc) · 2.27 KB
/
deno.json
File metadata and controls
48 lines (48 loc) · 2.27 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
{
"name": "@antara/cli",
"version": "0.1.0",
"exports": "./src/cli/main.ts",
"nodeModulesDir": "auto",
"imports": {
"@cliffy/ansi": "jsr:@cliffy/ansi@^1.0.0-rc.8",
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.8",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.8",
"@cliffy/table": "jsr:@cliffy/table@^1.0.0-rc.8",
"date-fns": "npm:date-fns@^4.1.0",
"drizzle-orm": "npm:drizzle-orm@^0.38",
"drizzle-orm/libsql": "npm:drizzle-orm@^0.38/libsql",
"drizzle-orm/libsql/migrator": "npm:drizzle-orm@^0.38/libsql/migrator",
"drizzle-orm/sqlite-core": "npm:drizzle-orm@^0.38/sqlite-core",
"drizzle-kit": "npm:drizzle-kit",
"@libsql/client": "npm:@libsql/client@^0.14",
"@libsql/client/node": "npm:@libsql/client@^0.14/node",
"@std/assert": "jsr:@std/assert@^1",
"@std/datetime": "jsr:@std/datetime@^0",
"@std/path": "jsr:@std/path@^1",
"@std/testing": "jsr:@std/testing@^1"
},
"tasks": {
"install": "deno install --global --force --name antara --config deno.json -ERWS --allow-ffi src/cli/main.ts",
"dev": "deno run --watch -ERWS --allow-ffi src/cli/main.ts",
"cli": "deno run -ERWS --allow-ffi src/cli/main.ts",
"test": "deno test --parallel --allow-ffi --allow-read --allow-write --allow-env",
"check": "deno check src/",
"lint": "deno run -A npm:@biomejs/biome lint ./src",
"fmt": "deno run -A npm:@biomejs/biome format --write ./src",
"fmt:check": "deno run -A npm:@biomejs/biome format ./src",
"biome": "deno run -A npm:@biomejs/biome check --write ./src",
"db:generate": "deno run -A npm:drizzle-kit generate",
"db:migrate": "deno run -A npm:drizzle-kit migrate",
"db:studio": "deno run -A npm:drizzle-kit studio",
"install:zsh-completions": "mkdir -p ~/.zsh/completions && cp completions/_antara ~/.zsh/completions/_antara && echo 'Completions installed. Ensure ~/.zsh/completions is in your fpath (add: fpath=(~/.zsh/completions $fpath) to ~/.zshrc before compinit)'",
"postinstall": "sed -i.bak 's/\"deno\"/\"no-deno\"/' node_modules/@libsql/client/package.json 2>/dev/null || true"
},
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noUnusedLocals": true,
"noUnusedParameters": true
}
}