-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.2 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
81
82
83
84
85
86
87
88
89
{
"name": "@videodb/player-vue",
"version": "0.0.4",
"description": "VideoDB Player is an AI-first video player that enhances how we interact with videos.",
"author": "VideoDB",
"license": "Apache-2.0",
"homepage": "https://videodb.io",
"repository": {
"type": "git",
"url": "https://github.com/video-db/videodb-player.git"
},
"private": false,
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"style": "dist/style.css",
"types": "types/index.d.ts",
"files": [
"dist",
"types",
"README.md"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"scripts": {
"dev-server": "vite",
"dev-types": "vue-tsc --noEmit -p tsconfig.app.json --watch",
"build": "npm run build-lib && npm run build-types",
"build-lib": "vite build",
"build-types": "vue-tsc --emitDeclarationOnly --declaration -p tsconfig.app.json",
"lint": "eslint 'src/**/*.{ts,vue}'",
"format": "prettier --write 'src/**/*.{ts,vue}'",
"test": "vitest",
"test-ci": "vitest --run",
"prepublishOnly": "npm run build"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"swiper": "^11.1.10",
"video.js": "^8.17.3",
"vue3-popper": "^1.5.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.8.10",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/compiler-dom": "^3.3.8",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.53.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"run-p": "^0.0.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"vue": "^3.4.38",
"vue-tsc": "^2.0.29"
},
"peerDependencies": {
"vue": "^3.0.4"
},
"keywords": [
"video",
"player",
"videodb",
"video-db",
"video_db",
"videodb-player",
"video-player",
"video-player-component",
"ai-video-player",
"vue"
]
}