Graphical PDS migrator for AT Protocol
1{
2 "tasks": {
3 "ok": "deno fmt --check && deno lint && deno check",
4 "dev": "deno run -A --env --watch=static/,routes/ dev.ts",
5 "build": "deno run -A dev.ts build",
6 "preview": "deno serve -A _fresh/server.js",
7 "update": "deno run -A -r jsr:@fresh/update ."
8 },
9 "lint": {
10 "rules": {
11 "tags": [
12 "fresh",
13 "recommended"
14 ]
15 },
16 "exclude": [
17 "**/_fresh/*",
18 "**/tests/**",
19 "**/.yarn/**"
20 ]
21 },
22 "fmt": {
23 "exclude": [
24 "**/_fresh/*",
25 "**/tests/**",
26 "**/.yarn/**"
27 ]
28 },
29 "exclude": [
30 "**/_fresh/*",
31 "**/tests/**"
32 ],
33 "imports": {
34 "@atproto/api": "npm:@atproto/api@^0.15.27",
35 "@bigmoves/atproto-oauth-client": "jsr:@bigmoves/atproto-oauth-client@^0.2.0",
36 "@knotbin/posthog-fresh": "jsr:@knotbin/posthog-fresh@^0.1.3",
37 "fresh": "jsr:@fresh/core@^2.0.0",
38 "@fresh/plugin-tailwind": "jsr:@fresh/plugin-tailwind@1.0.0",
39 "preact": "npm:preact@^10.27.1",
40 "@preact/signals": "npm:@preact/signals@^2.3.1",
41 "@atproto/crypto": "npm:@atproto/crypto@^0.4.4",
42 "@did-plc/lib": "npm:@did-plc/lib@^0.0.4",
43 "tailwindcss": "npm:tailwindcss@^4.1.13"
44 },
45 "compilerOptions": {
46 "lib": [
47 "dom",
48 "dom.asynciterable",
49 "dom.iterable",
50 "deno.ns"
51 ],
52 "jsx": "precompile",
53 "jsxImportSource": "preact",
54 "jsxPrecompileSkipElements": [
55 "a",
56 "img",
57 "source",
58 "body",
59 "html",
60 "head",
61 "title",
62 "meta",
63 "script",
64 "link",
65 "style",
66 "base",
67 "noscript",
68 "template"
69 ],
70 "types": [
71 "node"
72 ]
73 },
74 "unstable": [
75 "kv",
76 "otel"
77 ],
78 "nodeModulesDir": "auto"
79}