-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.39 KB
/
package.json
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
{
"name": "talks",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "prettier --check .",
"build": "run-s build:*",
"build:css": "postcss themes --ext css -d themes --no-map",
"build:html": "marp",
"build:pptx": "marp --pptx",
"build:image": "marp --image",
"build:txt": "marp --notes",
"build:pdf": "marp --pdf --pdf-notes",
"build:pdf:compress": "./compress_pdfs.sh",
"build:images": "cp -vr images dist/",
"build:indexhtml": "node generate_index.js > dist/index.html",
"start": "run-p server:*",
"secrets:hide": "git secret hide -m",
"secrets:reveal": "git secret reveal",
"server:postcss": "postcss --watch --ext css -d themes themes",
"server:marp": "marp -s",
"server:git-secret": "while sleep 1; do npm run secrets:hide > /dev/null; done",
"prepare": "husky"
},
"author": "Chris Nesbitt-Smith",
"license": "MIT",
"postcss": {
"map": false
},
"dependencies": {
"@marp-team/marp-cli": "^4.0.0",
"husky": "^9.0.11",
"marked": "^15.0.0",
"npm-run-all2": "7.0.1",
"postcss-cli": "11.0.0",
"postcss-discard-comments": "^7.0.0",
"postcss-for": "^2.1.1",
"postcss-import": "^16.0.0",
"postcss-math": "^0.0.10",
"postcss-nested": "^7.0.0",
"postcss-simple-vars": "^7.0.1",
"postcss-use": "^3.0.0",
"prettier": "3.4.1"
}
}