-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
23 lines (23 loc) · 1.16 KB
/
Copy pathdeno.json
File metadata and controls
23 lines (23 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
{
"name": "opencode-visualizer",
"author": "daniel maricic <daniel@woss.io>",
"license": "MIT",
"exports": "./main.ts",
"fmt": {
"exclude": [".opencode"]
},
"lint": {
"exclude": [".opencode"]
},
"tasks": {
"compile": "deno compile --allow-read --allow-write --allow-env --allow-ffi --output ocv main.ts",
"compile-all": "deno compile --allow-read --allow-write --allow-env --allow-ffi --output ocv-x86_64-linux --target x86_64-unknown-linux-gnu main.ts && deno compile --allow-read --allow-write --allow-env --allow-ffi --output ocv-x86_64-macos --target x86_64-apple-darwin main.ts && deno compile --allow-read --allow-write --allow-env --allow-ffi --output ocv-aarch64-macos --target aarch64-apple-darwin main.ts && deno compile --allow-read --allow-write --allow-env --allow-ffi --output ocv-aarch64-linux --target aarch64-unknown-linux-gnu main.ts",
"start": "deno run --allow-read --allow-write --allow-env --allow-ffi --allow-net main.ts",
"check": "deno check main.ts"
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7",
"@db/sqlite": "jsr:@db/sqlite@^0.12.0",
"@std/path": "jsr:@std/path@^1.0.0"
}
}