-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 891 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "farcaster-tui",
"version": "0.2.1",
"description": "A terminal-based Farcaster client",
"type": "module",
"bin": {
"farcaster-tui": "bin/cli.cjs"
},
"scripts": {
"start": "bun src/index.tsx",
"dev": "bun --watch src/index.tsx",
"build": "bun build src/index.tsx --compile --outfile farcaster-tui",
"typecheck": "bunx tsc --noEmit"
},
"dependencies": {
"@farcaster/hub-nodejs": "^0.15.9",
"@inkjs/ui": "^2.0.0",
"ink": "^6.0.0",
"react": "^19.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.0.0",
"typescript": "^5.8.0"
},
"keywords": [
"farcaster",
"tui",
"terminal",
"cli",
"typescript",
"bun"
],
"author": "backmeupplz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/backmeupplz/farcaster-tui.git"
}
}