-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.79 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.79 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
{
"name": "slide-deck-cli",
"version": "1.0.0",
"description": "Transform Markdown into stunning Reveal.js presentations with live reload, PDF export, and static site generation",
"main": "index.js",
"bin": {
"slide-deck": "./bin/index.js"
},
"scripts": {
"start": "node bin/index.js sample.md",
"build": "node bin/index.js sample.md --build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint bin lib tests",
"lint:fix": "eslint bin lib tests --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"keywords": [
"markdown",
"presentation",
"slides",
"reveal.js",
"cli",
"pdf",
"static-site"
],
"author": "",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/bradmca/slide-deck-cli.git"
},
"bugs": {
"url": "https://github.com/bradmca/slide-deck-cli/issues"
},
"homepage": "https://github.com/bradmca/slide-deck-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin",
"lib",
"templates"
],
"dependencies": {
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"express": "^5.2.1",
"open": "^11.0.0",
"puppeteer": "^24.36.1",
"reveal.js": "^5.2.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}