ditto/deno.json

57 lines
2.0 KiB
JSON
Raw Normal View History

2023-03-05 01:55:28 +00:00
{
"$schema": "https://deno.land/x/deno@v1.41.0/cli/schemas/config-file.v1.json",
2023-03-05 01:55:28 +00:00
"tasks": {
"start": "deno run -A src/server.ts",
"dev": "deno run -A --watch src/server.ts",
"debug": "deno run -A --inspect src/server.ts",
"test": "DATABASE_URL=\"sqlite://:memory:\" deno test -A",
2023-08-17 18:20:25 +00:00
"check": "deno check src/server.ts",
"relays:sync": "deno run -A scripts/relays.ts sync",
2024-04-23 22:32:24 +00:00
"nsec": "deno run scripts/nsec.ts",
2024-04-23 23:13:18 +00:00
"admin:event": "deno run -A scripts/admin-event.ts",
"admin:role": "deno run -A scripts/admin-role.ts"
2023-03-05 01:55:28 +00:00
},
"unstable": ["ffi", "kv"],
"exclude": ["./public"],
2024-04-19 20:17:09 +00:00
"imports": {
"@/": "./src/",
"@nostrify/nostrify": "jsr:@nostrify/nostrify@^0.15.0",
"@sentry/deno": "https://deno.land/x/sentry@7.112.2/index.mjs",
"@soapbox/kysely-deno-sqlite": "jsr:@soapbox/kysely-deno-sqlite@^2.0.2",
2024-05-01 21:14:50 +00:00
"@soapbox/stickynotes": "jsr:@soapbox/stickynotes@^0.4.0",
2024-04-23 22:32:24 +00:00
"@std/cli": "jsr:@std/cli@^0.223.0",
2024-04-29 20:54:01 +00:00
"@std/crypto": "jsr:@std/crypto@^0.224.0",
"@std/encoding": "jsr:@std/encoding@^0.224.0",
2024-04-23 22:32:24 +00:00
"@std/json": "jsr:@std/json@^0.223.0",
2024-04-29 20:54:01 +00:00
"@std/media-types": "jsr:@std/media-types@^0.224.0",
2024-04-23 22:32:24 +00:00
"@std/streams": "jsr:@std/streams@^0.223.0",
2024-05-01 20:55:56 +00:00
"comlink": "npm:comlink@^4.4.1",
2024-04-20 23:54:15 +00:00
"hono": "https://deno.land/x/hono@v3.10.1/mod.ts",
"hono/middleware": "https://deno.land/x/hono@v3.10.1/middleware.ts",
2024-05-01 14:32:24 +00:00
"kysely": "npm:kysely@^0.27.3",
2024-04-23 20:03:20 +00:00
"kysely_deno_postgres": "https://deno.land/x/kysely_deno_postgres@v0.4.0/mod.ts",
2024-05-01 20:57:28 +00:00
"nostr-relaypool": "npm:nostr-relaypool2@0.6.34",
"nostr-tools": "npm:nostr-tools@^2.5.1",
"nostr-wasm": "npm:nostr-wasm@^0.1.0",
2024-05-01 21:16:19 +00:00
"type-fest": "npm:type-fest@^4.3.0",
2024-04-23 22:32:24 +00:00
"zod": "npm:zod@^3.23.4",
"~/fixtures/": "./fixtures/"
2024-04-19 20:17:09 +00:00
},
2023-03-05 01:55:28 +00:00
"lint": {
"include": ["src/", "scripts/"],
2023-03-05 01:55:28 +00:00
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"include": ["src/", "scripts/"],
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
2023-03-05 01:55:28 +00:00
}
2024-03-17 20:44:49 +00:00
}