-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 2.56 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
{
"name": "chat-shared-conversation-to-file",
"version": "0.4.5",
"description": "CLI to download public share links (ChatGPT/Gemini/Grok/Claude) and save clean Markdown + HTML transcripts.",
"license": "MIT",
"bin": {
"csctf": "./dist/csctf"
},
"type": "module",
"scripts": {
"postinstall": "bun scripts/patch-playwright.js",
"build": "bun build src/index.ts --compile --outfile dist/csctf --external electron --external chromium-bidi/lib/cjs/bidiMapper/BidiMapper --external chromium-bidi/lib/cjs/cdp/CdpConnection",
"build:mac-arm64": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/csctf-macos-arm64 --external electron --external chromium-bidi/lib/cjs/bidiMapper/BidiMapper --external chromium-bidi/lib/cjs/cdp/CdpConnection",
"build:mac-x64": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile dist/csctf-macos-x64 --external electron --external chromium-bidi/lib/cjs/bidiMapper/BidiMapper --external chromium-bidi/lib/cjs/cdp/CdpConnection",
"build:linux-x64": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile dist/csctf-linux-x64 --external electron --external chromium-bidi/lib/cjs/bidiMapper/BidiMapper --external chromium-bidi/lib/cjs/cdp/CdpConnection",
"build:linux-arm64": "bun build src/index.ts --compile --target=bun-linux-arm64 --outfile dist/csctf-linux-arm64 --external electron --external chromium-bidi/lib/cjs/bidiMapper/BidiMapper --external chromium-bidi/lib/cjs/cdp/CdpConnection",
"build:windows-x64": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile dist/csctf-windows-x64.exe --external electron --external chromium-bidi/lib/cjs/bidiMapper/BidiMapper --external chromium-bidi/lib/cjs/cdp/CdpConnection",
"build:all": "bun run build:mac-arm64 && bun run build:mac-x64 && bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:windows-x64",
"lint": "bunx eslint src --max-warnings=0",
"typecheck": "bunx tsc --noEmit",
"test": "bun test",
"test:e2e": "CSCTF_E2E=1 bun test e2e/e2e.test.ts",
"check": "bun run lint && bun run typecheck",
"dev": "bun run src/index.ts"
},
"dependencies": {
"chalk": "^5.6.2",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"playwright-chromium": "^1.57.0",
"puppeteer-core": "^24.35.0",
"turndown": "^7.2.2"
},
"devDependencies": {
"@types/node": "^24.10.9",
"@types/markdown-it": "^14.1.2",
"@types/turndown": "^5.0.6",
"eslint": "^9.39.2",
"bun-types": "^1.3.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0"
}
}