-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.67 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
{
"name": "slidev-addon-sync",
"version": "0.1.0",
"description": "Sync addon for Slidev",
"homepage": "https://github.com/Smile-SA/slidev-addon-sync",
"repository": {
"type": "git",
"url": "[email protected]:Smile-SA/slidev-addon-sync.git"
},
"bugs": {
"url": "https://github.com/Smile-SA/slidev-addon-sync/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",
"preview": "vite preview"
},
"keywords": [
"vuejs",
"slidev",
"slidev-addon",
"sync"
],
"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/core": "^11.0.3",
"deep-object-diff": "^1.1.9",
"hashids": "^2.3.0",
"uuid": "^10.0.0"
}
}