-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.84 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
{
"name": "vuepg",
"version": "1.2.1",
"description": "Vue2/3 通用大屏端焦点管理工具",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"git:fixup": "git add . && git commit --amend --no-edit",
"update:version": "node ./scripts/updateVersion.mjs",
"autobuild": "npm run update:version && npm run git:fixup && npm run build",
"build": "rimraf dist/ && tsc",
"test:2": "vue-demi-switch 2 && jest",
"test:3": "vue-demi-switch 3 vue3 && jest",
"publish:major": "npm version major && npm run autobuild && npm publish && git push",
"publish:minor": "npm version minor && npm run autobuild && npm publish && git push",
"publish:patch": "npm version patch && npm run autobuild && npm publish && git push",
"publish:premajor": "npm version premajor && npm run autobuild && npm publish && git push",
"publish:preminor": "npm version preminor && npm run autobuild && npm publish && git push",
"publish:prepatch": "npm version prepatch && npm run autobuild && npm publish && git push",
"publish:prerelease": "npm version prerelease && npm run autobuild && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UzkiS/vuEPG.git"
},
"keywords": [
"epg",
"vuepg",
"vue-epg",
"focusable",
"iptv"
],
"author": "UzkiS",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/UzkiS/vuEPG/issues"
},
"homepage": "https://github.com/UzkiS/vuEPG#readme",
"dependencies": {
"vue-demi": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"vue": "latest",
"rimraf": "latest",
"typescript": "latest"
}
}