-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1018 Bytes
/
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
{
"name": "sync-video-player",
"version": "1.0.4",
"type": "module",
"license": "MIT",
"description": "SyncVideoPlayer is an npm package that can play multiple HTML videos at once and keep them in sync.",
"files": [
"dist"
],
"main": "./dist/sync-video-player.umd.js",
"module": "./dist/sync-video-player.es.js",
"exports": {
".": {
"import": "./dist/sync-video-player.es.js",
"require": "./dist/sync-video-player.umd.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.5.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"sass": "^1.58.1",
"typescript": "^4.9.3",
"vite": "^5.4.6",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.0.24"
}
}