This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 2.04 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
{
"name": "vue3-player-video",
"version": "1.2.5",
"description": "A vue 3 component to display our video in custom video player (customizable with multi themes)",
"keywords": [
"playervideo",
"modern",
"vue3",
"videoplayer",
"video",
"design"
],
"main": "dist/vue3-player-video.ssr.js",
"browser": "dist/vue3-player-video.esm.js",
"module": "dist/vue3-player-video.esm.js",
"unpkg": "dist/vue3-player-video.min.js",
"files": [
"dist/*",
"src/**/*.vue"
],
"sideEffects": false,
"scripts": {
"serve": "vue-cli-service serve dev/serve.js",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife"
},
"dependencies": {
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@vue/cli-plugin-babel": "^4.5.10",
"@vue/cli-service": "^4.5.10",
"@vue/compiler-sfc": "^3.0.5",
"cross-env": "^7.0.3",
"minimist": "^1.2.5",
"rollup": "^2.36.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"@fullhuman/postcss-purgecss": "^1.2.0",
"autoprefixer": "^9.6.1",
"browserslist": "^4.6.6",
"postcss-modules": "3.0.0",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"postcss": "^7.0.35",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"vue": "^3.0.5"
},
"peerDependencies": {
"vue": "^3.0.5"
},
"engines": {
"node": ">=12"
}
}