-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
80 lines (80 loc) · 2.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "vue-fullscreen",
"scope": "VueFullscreen",
"version": "2.6.3",
"description": "A simple Vue.js component for fullscreen",
"main": "./dist/index.umd.js",
"unpkg": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"typings": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.js",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"prepare": "husky install",
"dev": "npm -C example run dev",
"build": "vue-tsc --noEmit && vite build",
"preview:build": "npm -C example run build",
"preview:serve": "npm -C example run serve",
"release": "standard-version",
"release:beta": "standard-version -p beta",
"publish:legacy": "npm run build && npm publish --tag legacy",
"publish:beta": "npm run build && npm publish --tag beta"
},
"files": [
"dist",
"types",
"README.md"
],
"keywords": [
"vue",
"fullscreen"
],
"license": "MIT",
"author": "mirari",
"bugs": {
"url": "https://github.com/mirari/vue-fullscreen/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mirari/vue-fullscree.git"
},
"homepage": "https://github.com/mirari/vue-fullscreen#readme",
"dependencies": {
"screenfull": "^5.1.0"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.6.4",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/lodash-es": "^4.17.4",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.0",
"@vue/compiler-sfc": "^3.2.26",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/runtime-dom": "^3.2.4",
"bulma": "^0.9.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"sass": "^1.47.0",
"standard-version": "^9.3.0",
"typescript": "^4.5.4",
"vite": "^2.7.10",
"vite-plugin-vue2": "^1.9.2",
"vue-template-compiler": "^2.6.14",
"vue-tsc": "^0.30.2"
}
}