-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
84 lines (84 loc) · 2.97 KB
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"lock": false,
"tasks": {
"dev": "deno run -A --watch=static/,routes/,content/ dev.ts",
"start": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"log": "deno run --allow-net=api.themoviedb.org,openlibrary.org --allow-read --allow-write=./static/api --allow-env --allow-import src/log/cli.ts",
"blog": "deno run -A src/blog.ts",
"setup:hooks": "deno run -A -r https://deno.land/x/githooks/githooks.ts",
"check": "deno fmt --check && deno lint && deno check --allow-import **/*.tsx && deno check --allow-import **/*.ts",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts",
"blogroll:update": "cp \"$(deno eval --env='.env' 'console.log(Deno.env.get(`NETNEWSWIRE_PATH`))')\" $INIT_CWD/static/api/feeds.opml"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"types": [
"./src/types.d.ts"
]
},
"nodeModulesDir": "auto",
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"$fresh_charts/": "https://deno.land/x/[email protected]/",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.4",
"@deno/gfm": "jsr:@deno/gfm@^0.8.2",
"@libs/xml": "jsr:@libs/xml@^5.2.0",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/dotenv": "jsr:@std/[email protected]",
"@std/front-matter": "jsr:@std/[email protected]",
"@std/html": "jsr:@std/[email protected]",
"@std/text": "jsr:@std/[email protected]",
"@std/toml": "jsr:@std/[email protected]",
"@timharek/linkding": "jsr:@timharek/linkding@^2.0.3",
"@timharek/openlibrary": "jsr:@timharek/[email protected]",
"@timharek/tmdb": "https://git.sr.ht/~timharek/tmdb/blob/main/mod.ts",
"highlight.js": "npm:[email protected]",
"icons/": "https://deno.land/x/[email protected]/tsx/",
"marked": "npm:[email protected]",
"marked-alert": "npm:marked-alert@^2.0.1",
"marked-gfm-heading": "npm:[email protected]",
"marked-highlight": "npm:[email protected]",
"preact": "https://esm.sh/[email protected]",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js",
"tldts": "npm:[email protected]",
"zod": "npm:zod@^3.23.8",
"zod-form-data": "npm:zod-form-data@^2.0.2"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"fmt": {
"exclude": [
"**/*.md",
"**/*.json"
],
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"singleQuote": false,
"proseWrap": "preserve"
},
"githooks": {
"pre-commit": "check",
"pre-push": "deno test -A"
},
"exclude": [
"**/_fresh/*",
"static",
".build.yml"
]
}