-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.08 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.08 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
{
"name": "extension-annotation-sidebar",
"description": "see annotations on your current page",
"private": true,
"version": "0.0.11",
"workspaces": [
"api",
"extension"
],
"type": "module",
"scripts": {
"demo": "vite --config demo/vite.config.ts",
"ink": "vite --config henry-ink/vite.config.ts",
"build:demo": "vite build --config demo/vite.config.ts",
"build:ink": "vite build --config henry-ink/vite.config.ts",
"dev": "bun --filter atproto-extension dev",
"build": "bun --filter atproto-extension build",
"compile": "tsc --noEmit",
"release": "bun scripts/release.ts",
"deploy:demo": "bun run build:demo && CLOUDFLARE_ACCOUNT_ID=899db3f6d2659dfb20376c7e752c862d bunx wrangler pages deploy demo/dist --project-name=annotation-sidebar-demo --branch=main",
"deploy:ink": "bun run build:ink && CLOUDFLARE_ACCOUNT_ID=4eb8c64e85c6cc2bcb31e3df36da1959 bunx wrangler pages deploy henry-ink/dist --project-name=henry-note-reader --branch=main",
"deploy:bsky_worker": "bunx wrangler deploy -c wrangler.toml",
"deploy:jina_worker": "bunx wrangler deploy -c wrangler.jina-proxy.toml",
"api": "bun api/server.ts",
"migrate:api": "bun scripts/migrate-api.ts"
},
"dependencies": {
"@atcute/atproto": "^3.1.2",
"@atcute/bluesky": "^3.2.1",
"@atcute/bluesky-richtext-segmenter": "^2.0.3",
"@atcute/client": "^4.0.3",
"@atcute/lexicons": "^1.1.1",
"@atcute/oauth-browser-client": "^1.0.26",
"@preact/signals": "^2.3.1",
"@preact/signals-react": "^3.3.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.85.5",
"@tanstack/react-query-persist-client": "^5.85.5",
"dompurify": "^3.2.6",
"idb": "^8.0.3",
"marked": "^16.2.1",
"preact": "^10.27.0",
"preact-iso": "^2.10.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250826.0",
"@preact/preset-vite": "^2.10.2",
"@types/bun": "^1.2.21",
"@types/jsdom": "^21.1.7",
"typescript": "^5.9.2",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.5.0"
}
}