forked from tderflinger/vue-audio-tapir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "vue-audio-tapir",
"description": "Audio recorder tapir component for Vue.js 3. It enables to record, play and send audio messages to a server.",
"version": "1.6.1",
"author": {
"name": "Thomas Derflinger",
"url": "https://www.tderflinger.com"
},
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"build": "NODE_ENV=production && vue-cli-service build --mode production --target lib --name vue-audio-tapir src/components/TapirWidget.vue"
},
"keywords": [
"vue",
"audio",
"mp3",
"messaging",
"microphone",
"recording"
],
"dependencies": {
"core-js": "3.19.1"
},
"peerDependencies": {
"vue": "^3.2.39"
},
"devDependencies": {
"@babel/core": "7.18.9",
"@babel/eslint-parser": "7.18.9",
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-service": "5.0.8",
"autoprefixer": "10.4.19",
"eslint": "7.32.0",
"eslint-plugin-vue": "8.7.1",
"postcss": "8.4.16",
"tailwindcss": "3.4.4"
},
"main": "dist/vue-audio-tapir.common.js",
"browser": "dist/vue-audio-tapir.umd.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tderflinger/vue-audio-tapir.git"
},
"bugs": {
"url": "https://github.com/tderflinger/vue-audio-tapir/issues"
},
"homepage": "https://github.com/tderflinger/vue-audio-tapir",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential"
],
"rules": {
"quotes": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}