-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "birdclaw",
"version": "0.8.5",
"description": "Local Twitter memory in SQLite for archives, DMs, likes, bookmarks, and moderation",
"homepage": "https://github.com/steipete/birdclaw#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/steipete/birdclaw.git"
},
"bin": {
"birdclaw": "bin/birdclaw.mjs"
},
"files": [
"bin/",
"dist/cli/",
"dist/client/",
"dist/server/",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json"
],
"type": "module",
"imports": {
"#/*": "./src/*"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "BIRDCLAW_LOCAL_WEB=1 vite dev --host 127.0.0.1 --port 3000",
"build": "vite build && node scripts/build-cli.mjs",
"preview": "node bin/birdclaw.mjs serve",
"test": "node ./scripts/run-vitest.mjs run",
"coverage": "node ./scripts/run-vitest.mjs run --coverage",
"e2e": "playwright test",
"typecheck": "tsgo --noEmit",
"format": "oxfmt --write bin src scripts playwright vite.config.ts vitest.config.ts playwright.config.ts",
"format:check": "oxfmt --check bin src scripts playwright vite.config.ts vitest.config.ts playwright.config.ts",
"lint": "oxlint --import-plugin --node-plugin --vitest-plugin --deny-warnings -A require-mock-type-parameters -A no-control-regex bin src scripts playwright vite.config.ts vitest.config.ts playwright.config.ts",
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck",
"prepack": "pnpm run build",
"pack:smoke": "node scripts/package-smoke.mjs",
"perf:browser": "node ./scripts/browser-perf.mjs",
"cli": "tsx src/cli.ts",
"docs:site": "node scripts/build-docs-site.mjs"
},
"dependencies": {
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-router": "1.170.16",
"commander": "^15.0.0",
"effect": "^3.21.3",
"lucide-react": "^1.20.0",
"mapbox-gl": "^3.25.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-map-gl": "^8.1.1",
"supercluster": "^8.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.1",
"@tanstack/react-start": "1.168.26",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/geojson": "^7946.0.16",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/supercluster": "^7.1.3",
"@typescript/native-preview": "7.0.0-dev.20260617.2",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.9",
"esbuild": "^0.28.1",
"jsdom": "^29.1.1",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"tailwindcss": "^4.3.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=25.8.1 <27"
},
"packageManager": "pnpm@10.34.3"
}