-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.92 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.92 KB
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
41
42
43
44
45
46
47
48
49
{
"name": "xfeed",
"version": "0.1.7",
"description": "Terminal-based X/Twitter viewer with vim-style navigation. Install with: bun install -g xfeed",
"type": "module",
"bin": "./dist/index.js",
"scripts": {
"start": "bun src/index.tsx",
"build": "bun build src/index.tsx --outdir dist --target bun --external '@opentui/*' --external 'react' --external '@tanstack/*' --external 'cac' --external 'x-client-transaction-id' --external '@steipete/sweet-cookie'",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"lint": "oxlint src && oxfmt --check src",
"lint:fix": "oxlint --fix src && oxfmt --write src",
"test": "bun test src/api src/lib src/config/toml.test.ts && bun test src/auth/cookies.test.ts && bun test --preload ./src/auth/check.test.preload.ts src/auth/check.test.ts && bun test --preload ./src/config/preferences.test.preload.ts src/config/preferences.test.ts",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage src/api src/lib && bun test --coverage src/auth/cookies.test.ts && bun test --coverage --preload ./src/auth/check.test.preload.ts src/auth/check.test.ts",
"sync-context": "bun scripts/sync-context.ts",
"prepare": "lefthook install"
},
"dependencies": {
"@opentui-ui/dialog": "^0.1.2",
"@opentui-ui/toast": "^0.0.5",
"@opentui/core": "^0.1.69",
"@opentui/react": "^0.1.69",
"@steipete/sweet-cookie": "file:./vendor/sweet-cookie",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-router": "^1.144.0",
"cac": "^6.7.14",
"react": "^19.2.0",
"x-client-transaction-id": "^0.1.9"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22",
"@types/react": "^19.2.7",
"lefthook": "^2.0.13",
"oxfmt": "^0.21.0",
"oxlint": "^1.36.0",
"typescript": "^5.8",
"ultracite": "7.0.4"
},
"engines": {
"bun": ">= 1.0"
},
"files": [
"dist",
"vendor"
]
}