-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "slidev-theme-flyingstudio",
"version": "0.0.1",
"description": "flyingstudio`s theme for Slidev.",
"author": {
"name": "SoonIter",
"email": "[email protected]"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"slidev-theme",
"slidev"
],
"engines": {
"node": ">=14.0.0",
"slidev": ">=0.19.3"
},
"scripts": {
"build": "slidev build example.md",
"dev": "slidev example.md --open",
"export": "slidev export example.md",
"screenshot": "slidev export example.md --format png",
"release": "nr build && npx bumpp patch --commit '🔖v' && npm publish"
},
"dependencies": {
"@slidev/types": "^0.36.4",
"codemirror-theme-vars": "^0.1.1",
"prism-theme-vars": "^0.2.4",
"theme-vitesse": "^0.5.2"
},
"devDependencies": {
"@slidev/cli": "^0.36.4",
"playwright-chromium": "^1.25.2",
"bumpp": "^8.2.1",
"@antfu/ni": "^0.18.0"
},
"//": "Learn more: https://sli.dev/themes/write-a-theme.html",
"slidev": {
"colorSchema": "both",
"highlighter": "all",
"defaults": {
"fonts": {
"sans": "Nunito Sans",
"mono": "Fira Code"
},
"hightlighter": "prism"
}
}
}