-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "slidev-theme-academic",
"description": "Academic presentations with Slidev made simple",
"version": "2.1.0",
"author": {
"name": "Alexander Eble",
"email": "[email protected]",
"url": "https://www.alexeble.de"
},
"homepage": "https://slidev-theme-academic.alexeble.de",
"repository": {
"type": "git",
"url": "https://github.com/alexanderdavide/slidev-theme-academic"
},
"funding": "https://ko-fi.com/alexanderdavide",
"license": "MIT",
"keywords": [
"academic",
"slidev",
"slidev-theme",
"slidev-theme-academic"
],
"scripts": {
"build": "node prebuild.js && slidev build example.md",
"dev": "node prebuild.js && slidev example.md --open",
"export": "slidev export example.md",
"prepare": "husky install",
"release": "release-it",
"setup": "npm install && npm run prepare",
"screenshot": "slidev export example.md --format png",
"prettier": "prettier --write **/*.{css,ts,vue}"
},
"prettier": "@alexanderdavide/prettier-config",
"dependencies": {
"@slidev/types": "^0.29.2",
"unocss": "^0.62.3"
},
"devDependencies": {
"@alexanderdavide/prettier-config": "^1.0.1",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@iconify-json/mdi": "^1.1.0",
"@release-it/conventional-changelog": "^4.2.0",
"@slidev/cli": "^0.49.29",
"husky": "^7.0.4",
"playwright-chromium": "^1.19.2",
"prettier": "^2.6.2",
"release-it": "^14.12.5"
},
"engines": {
"node": ">=18.0.0",
"slidev": ">=0.47.0"
},
"slidev": {
"colorSchema": "both",
"highlighter": "shiki",
"defaults": {
"fonts": {
"sans": "Montserrat",
"serif": "Roboto Slab",
"mono": "Roboto Mono"
},
"themeConfig": {
"paginationX": "r",
"paginationY": "t"
}
}
}
}