Graphical PDS migrator for AT Protocol
1{
2 "tasks": {
3 "check": "deno fmt --check . && deno lint . && deno check **/*.ts && deno check **/*.tsx",
4 "dev": "deno run -A --env --watch=static/,routes/ dev.ts",
5 "build": "deno run -A dev.ts build",
6 "start": "deno run -A main.ts",
7 "update": "deno run -A -r jsr:@fresh/update ."
8 },
9 "lint": {
10 "rules": {
11 "tags": [
12 "fresh",
13 "recommended"
14 ]
15 }
16 },
17 "exclude": [
18 "**/_fresh/*"
19 ],
20 "imports": {
21 "@atproto/api": "npm:@atproto/api@^0.15.6",
22 "@bigmoves/atproto-oauth-client": "jsr:@bigmoves/atproto-oauth-client@^0.2.0",
23 "@knotbin/posthog-fresh": "jsr:@knotbin/posthog-fresh@^0.1.3",
24 "fresh": "jsr:@fresh/core@^2.0.0-alpha.33",
25 "@fresh/plugin-tailwind": "jsr:@fresh/plugin-tailwind@^0.0.1-alpha.7",
26 "posthog-js": "npm:posthog-js@1.120.0",
27 "preact": "npm:preact@^10.26.6",
28 "@preact/signals": "npm:@preact/signals@^2.0.4",
29 "tailwindcss": "npm:tailwindcss@^3.4.3",
30 "@atproto/crypto": "npm:@atproto/crypto@^0.4.4",
31 "@did-plc/lib": "npm:@did-plc/lib@^0.0.4"
32 },
33 "compilerOptions": {
34 "lib": [
35 "dom",
36 "dom.asynciterable",
37 "dom.iterable",
38 "deno.ns"
39 ],
40 "jsx": "precompile",
41 "jsxImportSource": "preact",
42 "jsxPrecompileSkipElements": [
43 "a",
44 "img",
45 "source",
46 "body",
47 "html",
48 "head"
49 ],
50 "types": [
51 "node"
52 ]
53 },
54 "unstable": [
55 "kv",
56 "otel"
57 ]
58}