-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.16 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": "vue-md-player",
"version": "2.1.2",
"description": "Lightweight HTML5 video and audio player component for vuejs",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:meyt/vue-md-player.git"
},
"keywords": [
"video-player",
"audio-player",
"html5",
"vue"
],
"author": "Mahdi Ghanea.g",
"license": "MIT",
"bugs": {
"url": "https://github.com/meyt/vue-md-player/issues"
},
"homepage": "https://github.com/meyt/vue-md-player#readme",
"type": "module",
"files": ["dist"],
"main": "./dist/vue-md-player.umd.cjs",
"module": "./dist/vue-md-player.js",
"exports": {
".": {
"import": "./dist/vue-md-player.js",
"require": "./dist/vue-md-player.umd.cjs"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build-demo": "vite build --config vite.demo.config.js --base=/vue-md-player/"
},
"dependencies": {},
"peerDependencies": {
"vue": "^3.2.41"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.2.0",
"vue": "^3.2.41",
"vite": "^3.2.0",
"sass": "^1.55.0"
}
}