-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.13 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
{
"name": "facet",
"version": "0.3.0",
"description": "One Markdown source, multiple facets: talk slides for presenting, PDF and long images for sharing.",
"private": false,
"license": "MIT",
"type": "module",
"keywords": [
"markdown-to-pdf",
"html-to-pdf",
"knowledge-pdf",
"tutorial-pdf",
"resume-pdf",
"cv-template",
"long-image",
"morandi",
"editorial-design",
"research-report",
"strategy-brief",
"gallery-catalog",
"xiaohongshu",
"wechat",
"playwright",
"typescript",
"agent-ready"
],
"repository": {
"type": "git",
"url": "git+https://github.com/webkubor/facet.git"
},
"bugs": {
"url": "https://github.com/webkubor/facet/issues"
},
"homepage": "https://github.com/webkubor/facet#readme",
"scripts": {
"build": "tsx src/build.ts",
"build:example": "tsx src/build.ts --input content/example.md --template warm-handbook --output output/example-warm-handbook.pdf",
"build:all": "tsx src/build.ts --input content/example.md --all",
"build:talk": "tsx src/build.ts --input content/ai-readable-kit.md --talk --theme themes/scorecard-blue.json --output output/ai-readable-kit.talk.html",
"talk:dev": "bunx vite output --port 4173 --host --open /ai-readable-kit.talk.html",
"build:resume": "tsx src/build.ts --input content/resume-example.md --template resume-payment-lead --output output/resume-example.pdf",
"build:resume:all": "tsx src/build.ts --input content/resume-example.md --all",
"setup:browsers": "playwright install chromium",
"check": "tsc --noEmit && node scripts/check-talk-pagination.mjs",
"verify:resume": "node scripts/verify-resume.mjs",
"check:pagination": "node scripts/check-talk-pagination.mjs",
"build:site": "node scripts/build-site.mjs",
"check:slides": "node scripts/check-slide-overflow.mjs"
},
"dependencies": {
"highlight.js": "^11.11.1",
"markdown-it": "^15.0.0",
"playwright": "^1.62.1"
},
"devDependencies": {
"@types/node": "^24.10.11",
"tsx": "^4.23.12",
"typescript": "^7.0.2"
},
"packageManager": "pnpm@11.1.2",
"engines": {
"node": ">=20.19"
}
}