-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "slidev-theme-geist",
"version": "0.8.1",
"homepage": "https://github.com/nico-bachner/slidev-theme-geist#readme",
"bugs": {
"url": "https://github.com/nico-bachner/slidev-theme-geist/issues"
},
"author": {
"name": "Nico Bachner",
"email": "[email protected]",
"url": "https://nicob.dev/"
},
"license": "MIT",
"keywords": [
"slidev-theme",
"slidev"
],
"engines": {
"node": ">=14",
"slidev": ">=0.20"
},
"slidev": {
"aspectRatio": "16/9",
"colorSchema": "both",
"highlighter": "all",
"default": {
"fonts": {
"sans": "Inter",
"mono": "Menlo"
},
"highlighter": "shiki"
}
},
"scripts": {
"dev": "slidev example.md",
"build": "slidev build example.md",
"export": "slidev export example.md",
"screenshot": "slidev export example.md --format png",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"format": "prettier --write components/*.vue layouts/* styles.css",
"release": "standard-version"
},
"dependencies": {
"@slidev/types": "^0.28.9",
"codemirror-theme-vars": "^0.1.1",
"prism-theme-vars": "^0.2.2"
},
"devDependencies": {
"@slidev/cli": "^0.28.9",
"playwright-chromium": "^1.19.2",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"vitepress": "^0.22.3"
}
}