43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"lock": false,
|
|
"tasks": {
|
|
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
|
|
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
|
|
"pmpr": "deno run -A toolbox/cli.ts",
|
|
"manifest": "deno task cli manifest $(pwd)",
|
|
"start": "deno run -A --unstable-ffi --watch=static/,routes/ dev.ts",
|
|
"build": "deno run -A --unstable-ffi dev.ts build",
|
|
"preview": "deno run -A --unstable-ffi main.ts",
|
|
"update": "deno run -A -r https://fresh.deno.dev/update ."
|
|
},
|
|
"lint": {
|
|
"rules": {
|
|
"tags": [
|
|
"fresh",
|
|
"recommended"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/_fresh/*"
|
|
],
|
|
"imports": {
|
|
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
|
|
"@db/sqlite": "jsr:@db/sqlite@^0.12.0",
|
|
"@melvdouc/xml-parser": "jsr:@melvdouc/xml-parser@^0.1.1",
|
|
"@popov/jwt": "jsr:@popov/jwt@^1.0.1",
|
|
"@psych/sheet": "jsr:@psych/sheet@^1.0.6",
|
|
"@std/cli": "jsr:@std/cli@^1.0.10",
|
|
"preact": "https://esm.sh/preact@10.22.0",
|
|
"preact/": "https://esm.sh/preact@10.22.0/",
|
|
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
|
|
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
|
|
"$std/": "https://deno.land/std@0.216.0/",
|
|
"$root/": "./"
|
|
},
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact"
|
|
}
|
|
}
|