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
|
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
"imports": {
"$/": "./src/",
"@/corvos.config.ts": "./corvos.config.ts",
"@zip-js/zip-js": "jsr:@zip-js/zip-js@^2.8.26",
"arktype": "npm:arktype@2.2.3",
"corvos": "https://corvos.wyvern.rip/pkg/corvos@0.1.2/mod.ts",
"corvos/": "https://corvos.wyvern.rip/pkg/corvos@0.1.2/",
"corvos/jsx-runtime": "https://corvos.wyvern.rip/pkg/corvos@0.1.2/jsx-runtime.ts",
"include-media/": "https://raw.githubusercontent.com/eduardoboucas/include-media/refs/heads/master/",
"iro-sass/": "https://git.wyvern.rip/iro-sass/plain/src/",
"iro-design/": "https://git.wyvern.rip/iro-design/plain/src/",
"oxfmt": "npm:oxfmt@^0.58.0",
"oxlint": "npm:oxlint@^1.73.0"
},
"permissions": {
"corvos": {
"read": true,
"write": ["./"],
"import": [
"cdn.jsdelivr.net:443",
"jsr.io:443",
"deno.land:443",
"esm.sh:443",
"corvos.wyvern.rip:443"
],
"net": [
"0.0.0.0",
"cdn.jsdelivr.net:443",
"data.jsdelivr.com:443",
"jsr.io:443",
"deno.land:443",
"esm.sh:443",
"registry.npmjs.org:443",
"raw.githubusercontent.com:443",
"git.wyvern.rip:443",
"strapi.volpeon.ink:443",
"icy.wyvern.rip:443",
"public.api.bsky.app:443",
"127.0.0.1:1337"
],
"env": true,
"run": true,
"ffi": true,
"sys": true
}
},
"tasks": {
"corvos": {
"description": "Run corvos command",
"command": "deno run -P=corvos corvos/cli.ts"
},
"build": {
"description": "Build the site for production",
"command": "deno task corvos"
},
"serve": {
"description": "Run and serve the site for development",
"command": "deno task corvos -s"
}
},
"compilerOptions": {
"lib": ["deno.window", "deno.unstable", "node", "dom"],
"jsx": "react-jsx",
"jsxImportSource": "corvos",
"strict": true,
"noUncheckedIndexedAccess": true
},
"unstable": ["temporal", "fmt-component"],
"lock": false,
"lint": {
"rules": {
"exclude": ["no-import-prefix", "ban-types", "jsx-key"]
}
}
}
|