mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-03 10:41:25 -06:00
🧪 add client test scripts
This commit is contained in:
parent
02abeab4f5
commit
294be1b03b
@ -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",
|
||||
|
20
scripts/client.ts
Normal file
20
scripts/client.ts
Normal file
@ -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)
|
||||
})()
|
19
tsconfig.script.json
Normal file
19
tsconfig.script.json
Normal file
@ -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"
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user