-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
41 lines (41 loc) · 1.44 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
{
"name": "slidev-theme-flayyer",
"version": "1.0.2",
"engines": {
"node": ">=14.0.0"
},
"description": "Flayyer theme for Slidev",
"keywords": [
"slidev-theme",
"slidev"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danestves/slidev-theme-flayyer.git"
},
"bugs": "https://github.com/danestves/slidev-theme-flayyer/issues",
"author": "Daniel Esteves <[email protected]>",
"slidev": {
"colorSchema": "both",
"highlighter": "all"
},
"scripts": {
"dev": "slidev example.md",
"build": "slidev build example.md",
"export": "slidev export example.md",
"screenshot": "slidev export example.md --format png",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'feat(docs): updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'feat(docs): updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'feat(docs): updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"dependencies": {
"@slidev/cli": "^0.6.7",
"@slidev/theme-default": "^0.6.7"
},
"devDependencies": {
"@types/node": "^15.0.2",
"generate-changelog": "^1.8.0",
"playwright-chromium": "^1.11.0"
}
}