-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.06 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
{
"name": "pullread",
"version": "0.5.1",
"description": "Sync Drafty bookmarks to markdown files",
"main": "src/index.ts",
"scripts": {
"embed-viewer": "bun scripts/embed-viewer.ts",
"prebuild": "bun scripts/embed-viewer.ts",
"sync": "ts-node src/index.ts sync",
"sync:retry": "ts-node src/index.ts sync --retry-failed",
"build": "bun build src/index.ts --compile --outfile dist/pullread",
"build:macos-arm64": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/pullread-arm64",
"build:macos-x64": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile dist/pullread-x64",
"sync:models": "bun scripts/sync-swift-models.ts",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:bun": "bun test src/models.test.ts src/shell-open.test.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@atproto/syntax": "^0.5.0",
"@fontsource/instrument-serif": "^5.2.8",
"@highlightjs/cdn-assets": "^11.11.1",
"@mozilla/readability": "^0.6.0",
"better-sqlite3": "^12.6.2",
"defuddle": "^0.8.0",
"dompurify": "^3.3.1",
"fast-xml-parser": "^5.3.3",
"force-graph": "^1.51.2",
"heroicons": "^2.2.0",
"hls.js": "^1.6.15",
"linkedom": "^0.18.12",
"marked": "^17.0.3",
"mermaid": "^11.12.3",
"nodemailer": "^8.0.1",
"turndown": "^7.2.2",
"unpdf": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@fontsource/inter": "^5.2.8",
"@fontsource/literata": "^5.2.8",
"@fontsource/lora": "^5.2.8",
"@fontsource/opendyslexic": "^5.2.5",
"@fontsource/source-serif-4": "^5.2.9",
"@fontsource/work-sans": "^5.2.8",
"@playwright/test": "^1.58.2",
"@types/bun": "^1.3.8",
"@types/jest": "^30.0.0",
"@types/node": "^25.1.0",
"@types/nodemailer": "^7.0.11",
"@types/turndown": "^5.0.6",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"normalize-path": "^3.0.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}