-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"name": "agentic-presentation-builder",
"version": "0.1.10",
"description": "LLM-friendly JSON-based presentation engine that renders to interactive JS presentations",
"main": "src/index.js",
"type": "module",
"bin": {
"apb": "bin/apb.js"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"present": "node scripts/present.js",
"export": "node scripts/export.js",
"shoot": "node scripts/shoot.js",
"docs:serve": "uvx --with-requirements docs/requirements.txt mkdocs serve",
"docs:build": "uvx --with-requirements docs/requirements.txt mkdocs build --strict",
"test": "node --test",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{js,json,css,html}\"",
"validate": "node scripts/validate.js",
"validate:examples": "node scripts/validate-examples.js"
},
"keywords": [
"presentation",
"reveal.js",
"json",
"llm",
"agentic"
],
"author": "Casual-Vibers",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/neuromechanist/agentic-presentation-builder.git"
},
"private": true,
"dependencies": {
"ajv": "^8.12.0",
"dompurify": "^3.0.6",
"jsdom": "^23.0.0",
"katex": "^0.16.9",
"marked": "^11.0.0",
"mermaid": "^10.6.1",
"pptxgenjs": "^4.0.1",
"prismjs": "^1.30.0",
"puppeteer-core": "^24.41.0",
"reveal.js": "^5.0.4",
"vite": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.55.0",
"prettier": "^3.1.1"
}
}