-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "slidev-theme-dracula",
"version": "0.2.0",
"description": "Dracula theme for Slidev",
"author": "JD Solanki <https://github.com/jd-solanki>",
"funding": "https://github.com/sponsors/jd-solanki",
"homepage": "https://jd-solanki.github.io/slidev-theme-dracula/",
"repository": {
"type": "git",
"url": "git+https://github.com/jd-solanki/slidev-theme-dracula.git"
},
"bugs": {
"url": "https://github.com/jd-solanki/slidev-theme-dracula/issues"
},
"keywords": [
"slidev theme",
"slidev",
"dracula",
"dracula theme",
"dark theme",
"theme"
],
"license": "MIT",
"engines": {
"node": ">=14.0.0",
"slidev": ">=0.19.3"
},
"scripts": {
"build": "slidev build slides/example.md",
"gen:demos": "tsx scripts/build.ts",
"dev": "slidev slides/example.md --open",
"dev:layouts": "slidev slides/layouts.md --open",
"export": "slidev export slides/example.md",
"screenshot": "slidev export slides/example.md --format png",
"release": "bumpp package.json"
},
"dependencies": {
"@slidev/types": "^0.42.5",
"codemirror-theme-vars": "^0.1.2",
"prism-theme-vars": "^0.2.4",
"theme-vitesse": "^0.7.2"
},
"devDependencies": {
"@iconify-json/iconoir": "^1.1.29",
"@iconify-json/logos": "^1.1.33",
"@slidev/cli": "^0.42.5",
"@types/node": "^20.4.2",
"bumpp": "^9.1.1",
"globby": "^13.2.2",
"serve": "^14.2.0",
"tsx": "^3.12.7"
},
"//": "Learn more: https://sli.dev/themes/write-a-theme.html",
"slidev": {
"colorSchema": "dark",
"highlighter": "shiki",
"defaults": {
"fonts": {
"sans": "Nunito Sans",
"mono": "JetBrains Mono"
},
"hightlighter": "shiki"
}
}
}