From 294be1b03b695bf975a3ab0c4a15ef4bbe4eb3e7 Mon Sep 17 00:00:00 2001 From: kawamataryo Date: Fri, 18 Aug 2023 21:43:20 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20add=20client=20test=20scripts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 3 ++- scripts/client.ts | 20 ++++++++++++++++++++ tsconfig.script.json | 19 +++++++++++++++++++ 3 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 scripts/client.ts create mode 100644 tsconfig.script.json diff --git a/package.json b/package.json index 3f1d7ac..5547368 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "build": "plasmo build", "build:firefox": "plasmo build --target=firefox-mv3", "package": "plasmo package", - "package:firefox": "plasmo package --target=firefox-mv3" + "package:firefox": "plasmo package --target=firefox-mv3", + "run-client": "ts-node --project tsconfig.script.json scripts/client.ts" }, "dependencies": { "@atproto/api": "^0.6.4", diff --git a/scripts/client.ts b/scripts/client.ts new file mode 100644 index 0000000..0719f62 --- /dev/null +++ b/scripts/client.ts @@ -0,0 +1,20 @@ +import { BskyClient } from "../src/lib/bskyClient" + +const searchBskyUsers = async () => { + const agent = await BskyClient.createAgent({ + identifier: process.env.BSKY_IDENTIFIER as string, + password: process.env.BSKY_PASSWORD as string, + }) + + const result = await agent.searchUser({ + term: "llamaindex", + limit: 3, + }) + + return result +} + +(async () => { + const result = await searchBskyUsers() + console.log(result) +})() diff --git a/tsconfig.script.json b/tsconfig.script.json new file mode 100644 index 0000000..5d3f4df --- /dev/null +++ b/tsconfig.script.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "esModuleInterop": true, + "sourceMap": true, + "outDir": "dist", + "rootDir": "src", + "resolveJsonModule": true, + "declaration": true + }, + "include": [ + "src/**/*.ts", + "scripts/**/*.ts" + ], + "exclude": [ + "node_modules" + ] +}