-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.99 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
{
"name": "lectern-editor",
"version": "2.1.1",
"description": "Visual drag-and-drop editor for AI-generated slide decks. Ask Claude, ChatGPT or any coding agent for a presentation, then fix the layout yourself \u2014 the reveal.js HTML file is the document. Offline, no account, no telemetry.",
"keywords": [
"reveal.js",
"revealjs",
"slides",
"presentation",
"presentation-editor",
"slide-editor",
"visual-editor",
"wysiwyg",
"drag-and-drop",
"html-slides",
"deck",
"ai",
"llm",
"ai-slides",
"claude",
"claude-code",
"chatgpt",
"agents",
"coding-assistant",
"keynote",
"powerpoint-alternative",
"google-slides-alternative",
"offline",
"local-first",
"no-telemetry"
],
"homepage": "https://github.com/calumhrmurray/lectern",
"repository": {
"type": "git",
"url": "git+https://github.com/calumhrmurray/lectern.git"
},
"bugs": {
"url": "https://github.com/calumhrmurray/lectern/issues"
},
"author": "Calum Murray",
"license": "MIT",
"type": "module",
"bin": {
"lectern": "cli/index.js"
},
"files": [
"dist",
"!dist/**/*.map",
"cli",
"AGENTS.md",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "node scripts/copy-reveal.js && tsc --noEmit && vite build && node scripts/build-cli-lib.mjs && node scripts/bundle-single.mjs",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npm run build && playwright test",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"start": "node cli/index.js",
"notes": "node cli/index.js notes"
},
"devDependencies": {
"@playwright/test": "^1.47.0",
"@types/node": "^22.0.0",
"happy-dom": "^15.0.0",
"jsdom": "^29.1.1",
"parse5": "^8.0.1",
"katex": "^0.18.4",
"reveal.js": "^5.2.0",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=18"
}
}