-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
39 lines (39 loc) · 942 Bytes
/
Copy pathdeno.json
File metadata and controls
39 lines (39 loc) · 942 Bytes
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
{
"nodeModulesDir": "auto",
"tasks": {
"build": "deno run -A --env-file=.dev.vars npm:astro build",
"check": "deno run -A npm:astro check",
"preview": "deno task build && deno run -A --env-file=.dev.vars npm:astro preview",
"deploy": "deno task build && deno run --allow-env --allow-run npm:wrangler deploy"
},
"imports": {
"@astrojs/check": "npm:@astrojs/check@^0.9.10",
"@astrojs/cloudflare": "npm:@astrojs/cloudflare@^13.7.0",
"astro": "npm:astro@^6.4.8",
"s3mini": "npm:s3mini@^0.9.5",
"typescript": "npm:typescript@^5.9.3",
"wrangler": "npm:wrangler@^4.118.0"
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"include": [
"astro.config.ts",
"src/**/"
],
"exclude": [
"dist/"
]
},
"lint": {
"include": [
"src/"
],
"exclude": [
"dist/"
]
}
}