starshard/peafowl
Template
1
Fork 0
mirror of https://github.com/starshardstudio/peafowl.git synced 2024-11-21 20:44:19 +00:00
peafowl/deno.json
2024-07-01 16:44:56 +02:00

32 lines
834 B
JSON

{
"imports": {
"lume/": "https://deno.land/x/lume@v2.2.1/",
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.5.1/",
"dotenv/": "https://deno.land/std@0.224.0/dotenv/"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s",
"cms": "deno task lume cms",
"import-steam": "deno run run --allow-env --allow-read --allow-net --allow-write _scripts/importSteam.ts"
},
"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"
]
}
}
}