-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "@zlict/slidev-theme-zli",
"version": "0.6.7",
"type": "module",
"description": "ZLI Slidev theme",
"keywords": [
"slidev-theme",
"slidev"
],
"homepage": "https://github.com/zlict/slidev-theme",
"repository": {
"type": "git",
"url": "https://github.com/zlict/slidev-theme"
},
"bugs": {
"url": "https://github.com/zlict/slidev-theme/issues"
},
"license": "UNLICENSED",
"author": "openscript GmbH <hi+npm@openscript.ch>",
"scripts": {
"build": "slidev build example.md",
"dev": "slidev example.md --open --remote",
"export": "slidev export example.md",
"screenshot": "slidev export example.md --format png",
"release:major": "standard-version --release-as major && git push --follow-tags",
"release:minor": "standard-version --release-as minor && git push --follow-tags",
"release:patch": "standard-version --release-as patch && git push --follow-tags",
"release:create-github-release": "conventional-github-releaser -p angular"
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^2.0.0",
"@fontsource/dongle": "^5.0.19",
"@fontsource/fira-code": "^5.0.18",
"@fontsource/nunito-sans": "^5.0.13",
"@fontsource/roboto": "^5.0.13",
"@slidev/types": "0.49.3",
"codemirror-theme-vars": "^0.1.2",
"prism-theme-vars": "^0.2.5"
},
"devDependencies": {
"@slidev/cli": "0.49.3",
"conventional-github-releaser": "^3.1.5",
"playwright-chromium": "^1.44.0",
"sass": "^1.77.2",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@8.14.1",
"slidev": {
"colorSchema": "light",
"highlighter": "all",
"defaults": {
"linenumbers": true,
"colorSchema": "light",
"fonts": {
"provider": "none",
"sans": "Roboto",
"mono": "Fira Code",
"local": "Roboto, Dongle, Fira Code"
},
"hightlighter": "shiki"
}
}
}