-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathinstall.manifest.json
More file actions
35 lines (35 loc) · 858 Bytes
/
install.manifest.json
File metadata and controls
35 lines (35 loc) · 858 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
{
"tasks": {
"start": "deno run -A --unstable-kv main.ts",
"upgrade": "deno run -A upgrade.ts"
},
"mappings": [
["$components/", "./components/"],
["$islands/", "./islands/"],
["$utils/", "./utils/"],
["./islands/", "./islands/"],
["./routes/", "./routes/"]
],
"dirs": ["docs", "static"],
"files": [
"./_fresh.zip",
"./.env.defaults",
"./CHANGELOG.md",
"./fresh.config.ts",
"./fresh.gen.ts",
"./LICENSE",
"./main.ts",
"./README.md",
"./tailwind.config.ts",
"./upgrade.ts",
"./docs/index.md",
"./static/android-chrome-192x192.png",
"./static/android-chrome-512x512.png",
"./static/apple-touch-icon.png",
"./static/favicon-16x16.png",
"./static/favicon-32x32.png",
"./static/favicon.ico",
"./static/logo.svg",
"./static/site.webmanifest"
]
}