-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathdeno.json
More file actions
26 lines (26 loc) · 1.16 KB
/
deno.json
File metadata and controls
26 lines (26 loc) · 1.16 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
{
"tasks": {
"start": "deno run -NER --allow-ffi --allow-sys --unstable-kv --unstable-broadcast-channel index.ts",
"dev": "deno run -NER --allow-ffi --allow-sys --unstable-kv --unstable-broadcast-channel --watch --watch-exclude='*.ts' index.ts",
"compile": "deno compile --target x86_64-pc-windows-msvc -NER --allow-ffi --unstable-kv --unstable-broadcast-channel --no-check --output ./release/QBin.exe --icon static\\img\\apple-icon-152.png index.ts",
"clean": "rm -rf ./release",
"drizzle-kit": "deno run -A --env-file npm:drizzle-kit",
"db:generate": "deno run -A --env-file npm:drizzle-kit generate",
"db:migrate": "deno run -A --env-file npm:drizzle-kit migrate",
"db:push": "deno run -A --env-file npm:drizzle-kit push"
},
"imports": {
"@libsql/client": "npm:@libsql/client@^0.15.4",
"@types/pg": "npm:@types/pg@^8.11.13",
"drizzle-kit": "npm:drizzle-kit@^0.30.6",
"drizzle-orm": "npm:drizzle-orm@^0.41.0",
"postgres": "npm:postgres@^3.4.5",
"pg": "npm:pg@^8.14.1"
},
"nodeModulesDir": "auto",
"fmt": {
"lineWidth": 100,
"proseWrap": "preserve"
},
"unstable": ["kv", "broadcast-channel", "fmt-component"]
}