Features: - Remote script execution with version control (name@ref) - Background daemon for fast completions (< 15ms) - HTTP caching with ETag/Last-Modified support - Context-aware completions with async support - Comprehensive documentation and type definitions Changes: - Add loader.ts with daemon mode - Add completions.d.ts type definitions - Add COMPLETIONS.md guide for developers - Add README.md with usage examples - Update configure_ssh_key.ts with async completions - Use JSR imports for remote execution compatibility
15 lines
335 B
JSON
15 lines
335 B
JSON
{
|
|
"imports": {
|
|
"@std/cli": "jsr:@std/cli@^1.0.0",
|
|
"@std/fs": "jsr:@std/fs@^1.0.0",
|
|
"@std/path": "jsr:@std/path@^1.0.0"
|
|
},
|
|
"tasks": {
|
|
"configure": "deno run --allow-read --allow-write --allow-run --allow-env configure_ssh_key.ts"
|
|
},
|
|
"lint": {
|
|
"rules": {
|
|
"exclude": ["no-external-import"]
|
|
}
|
|
}
|
|
}
|