-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.6 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
{
"name": "slidev-component-poll",
"version": "3.0.0",
"description": "Poll component for Slidev",
"homepage": "https://github.com/Smile-SA/slidev-component-poll",
"repository": {
"type": "git",
"url": "[email protected]:Smile-SA/slidev-component-poll.git"
},
"bugs": {
"url": "https://github.com/Smile-SA/slidev-component-poll/issues"
},
"scripts": {
"dev": "slidev example.md --open",
"build": "slidev build example.md",
"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"
},
"keywords": [
"vuejs",
"slidev",
"slidev-addon",
"poll"
],
"author": {
"name": "Tony Cabaye",
"email": "[email protected]",
"url": "https://github.com/tonai"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0",
"slidev": ">=0.50.0-beta.3"
},
"peerDependencies": {
"@slidev/client": "^0.50.0-beta.3",
"vue": "^3.4.38"
},
"devDependencies": {
"@slidev/cli": "^0.50.0-beta.3",
"@slidev/theme-default": "latest",
"@types/uuid": "^10.0.0",
"generate-changelog": "^1.8.0"
},
"dependencies": {
"@vueuse/motion": "^2.2.5",
"uuid": "^10.0.0"
}
}