substr/deno.json
Râu Cao 2c9edf4ddc
All checks were successful
CI / Test and lint (push) Successful in 16s
Release / Release tagged version (push) Successful in 31s
Automatically build and publish tagged releases
2024-12-10 14:54:26 +04:00

34 lines
1021 B
JSON

{
"tasks": {
"dev": "deno run --allow-all --watch server.ts",
"server": "deno run --allow-all server.ts",
"lint": "deno lint",
"test": "deno test --allow-read --allow-env",
"create-build-dir": "mkdir -p build",
"compile": {
"command": "deno compile --allow-all --include ./assets/ --output ./build/substr_x86_64-unknown-linux-gnu server.ts",
"dependencies": ["create-build-dir"]
},
"compile:release": {
"command": "echo LFG",
"dependencies": ["lint", "test", "compile"]
}
},
"imports": {
"@deno/gfm": "jsr:@deno/gfm@^0.10.0",
"@nostr/tools": "jsr:@nostr/tools@^2.10.4",
"@nostrify/nostrify": "jsr:@nostrify/nostrify@^0.36.2",
"@oak/oak": "jsr:@oak/oak@^17.1.3",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/expect": "jsr:@std/expect@^1.0.8",
"@std/testing": "jsr:@std/testing@^1.0.5",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"ldapts": "npm:ldapts@^7.2.2"
},
"fmt": {
"exclude": [
"magick.ts"
]
}
}