-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.71 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.71 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "vlitejs",
"version": "8.1.1",
"description": "vLitejs is a fast and lightweight Javascript library for customizing video and audio player in Javascript with a minimalist theme (HTML5, Youtube, Vimeo, Dailymotion)",
"keywords": [
"video",
"audio",
"html5",
"youtube",
"vimeo",
"dailymotion",
"player",
"youtube api",
"vimeo api",
"pip",
"picture-in-picture",
"subtitle",
"cast",
"chromecast",
"airplay",
"monetization",
"ima-sdk",
"sticky",
"volume bar",
"hotkeys"
],
"homepage": "https://vlite.js.org",
"bugs": "https://github.com/vlitejs/vlite/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/vlitejs/vlite.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/yoriiis"
},
"license": "MIT",
"author": "Yoriiis",
"type": "module",
"exports": {
"./plugins/*": {
"import": "./dist/plugins/*.js"
},
"./plugins/*.js": {
"import": "./dist/plugins/*.js"
},
"./plugins/*.css": {
"style": "./dist/plugins/*.css",
"import": "./dist/plugins/*.css"
},
"./providers/*": {
"import": "./dist/providers/*.js"
},
"./providers/*.js": {
"import": "./dist/providers/*.js"
},
"./vlite.css": {
"style": "./dist/vlite.css",
"import": "./dist/vlite.css"
},
".": {
"import": "./dist/vlite.js"
}
},
"main": "dist/vlite.js",
"module": "dist/vlite.js",
"files": [
"dist",
"!dist/**/*.map"
],
"scripts": {
"biome:check": "biome check",
"biome:fix": "biome check --write",
"build": "rm -rf ./dist/ && rollup --config ./config/rollup.config.js --environment ENV:production",
"dev": "rm -rf ./dist/ && rollup --config ./config/rollup.config.js --environment ENV:development --watch --sourcemap",
"dev:types": "tsc --noEmit --watch",
"e2e": "playwright test --config ./config/playwright.config.ts",
"e2e:ui": "playwright test --ui --config ./config/playwright.config.ts",
"test": "echo 'No local tests' && exit 0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.4",
"@playwright/test": "^1.56.1",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chromecast-caf-sender": "^1.0.11",
"baseline-browser-mapping": "^2.10.8",
"postcss": "^8.5.6",
"postcss-custom-media": "^11.0.6",
"postcss-import": "^16.1.1",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.4.0",
"postcss-url": "^10.1.1",
"prettier": "^3.6.2",
"rollup": "^4.52.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
}
}