20 lines
502 B
JSON
20 lines
502 B
JSON
{
|
|
"name": "@ecobridge/ecoos-daemon",
|
|
"version": "0.0.1",
|
|
"exports": "./mod.ts",
|
|
"tasks": {
|
|
"dev": "deno run --allow-all --watch mod.ts",
|
|
"start": "deno run --allow-all mod.ts",
|
|
"bundle": "deno compile --allow-all --output bundle/eco-daemon mod.ts"
|
|
},
|
|
"imports": {
|
|
"@std/http": "jsr:@std/http@^1.0.0",
|
|
"@std/fs": "jsr:@std/fs@^1.0.0",
|
|
"@std/path": "jsr:@std/path@^1.0.0",
|
|
"@std/async": "jsr:@std/async@^1.0.0"
|
|
},
|
|
"compilerOptions": {
|
|
"strict": true
|
|
}
|
|
}
|