2024-06-16 11:49:13 +00:00
|
|
|
{
|
|
|
|
"imports": {
|
2024-10-10 00:02:15 +00:00
|
|
|
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
|
2024-10-10 00:20:31 +00:00
|
|
|
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.6.8/",
|
2024-10-10 00:02:15 +00:00
|
|
|
"lume/": "https://deno.land/x/lume@v2.3.3/"
|
2024-06-16 11:49:13 +00:00
|
|
|
},
|
|
|
|
"tasks": {
|
|
|
|
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
|
|
|
|
"build": "deno task lume",
|
|
|
|
"serve": "deno task lume -s",
|
2024-10-10 00:20:31 +00:00
|
|
|
"cms": "deno task lume cms",
|
2024-08-29 23:22:18 +00:00
|
|
|
"import-steam": "deno run --allow-env --allow-read=. --allow-net --allow-write=. _scripts/importSteam.ts"
|
2024-06-16 11:49:13 +00:00
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"types": [
|
|
|
|
"lume/types.ts"
|
|
|
|
],
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"jsxImportSource": "npm:react",
|
|
|
|
"jsxImportSourceTypes": "npm:@types/react",
|
|
|
|
"noImplicitAny": false
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"rules": {
|
|
|
|
"exclude": [
|
|
|
|
"no-implicit-any",
|
|
|
|
"no-explicit-any",
|
|
|
|
"no-unused-vars"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|