-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.98 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@vidstack/react",
"version": "1.9.8",
"description": "UI component library for building high-quality, accessible video and audio experiences on the web.",
"license": "MIT",
"type": "module",
"types": "index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"*.d.ts",
"dist/",
"player/",
"tailwind.*",
"analyze.json"
],
"scripts": {
"analyze": "maverick analyze \"src/**/*.tsx\" --framework react --project tsconfig.build.json",
"dev": "pnpm clean && pnpm build:icons && pnpm build:types && pnpm watch",
"build": "pnpm build:icons && rollup -c",
"build:icons": "node .scripts/build-icons.js",
"build:types": "tsc -p tsconfig.build.json",
"sandbox": "node ../../.scripts/sandbox.js",
"sandbox:build": "vite build sandbox",
"types": "pnpm build:icons && pnpm build:types && rollup -c --config-types",
"clean": "rimraf dist player",
"format": "prettier src --write --loglevel warn",
"watch": "pnpm watch:types & rollup -c -w",
"watch:types": "pnpm run build:types -w"
},
"peerDependencies": {
"@types/react": "^18.0.0",
"react": "^18.0.0"
},
"dependencies": {
"media-captions": "^1.0.1"
},
"contributors": [
"Rahim Alwer <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/vidstack/player.git",
"directory": "packages/react"
},
"bugs": {
"url": "https://github.com/vidstack/player/issues"
},
"exports": {
".": {
"types": "./index.d.ts",
"development": "./dist/dev/vidstack.js",
"default": "./dist/prod/vidstack.js"
},
"./icons": {
"types": "./icons.d.ts",
"default": "./dist/prod/vidstack-icons.js"
},
"./player/remotion": {
"types": "./player/remotion.d.ts",
"development": "./dist/dev/player/vidstack-remotion.js",
"default": "./dist/prod/player/vidstack-remotion.js"
},
"./player/layouts/default": {
"types": "./player/layouts/default.d.ts",
"development": "./dist/dev/player/vidstack-default-layout.js",
"default": "./dist/prod/player/vidstack-default-layout.js"
},
"./player/styles/*": "./player/styles/*",
"./dist/types/*": "./dist/types/*",
"./package.json": "./package.json",
"./tailwind.cjs": {
"types": "./tailwind.d.cts",
"default": "./tailwind.cjs"
},
"./analyze.json": {
"types": "./analyze.json.d.ts",
"default": "./analyze.json"
}
},
"publishConfig": {
"access": "public"
},
"keywords": [
"accessible",
"analytics",
"audio",
"customizable",
"dailymotion",
"elements",
"extensible",
"file",
"framework-agnostic",
"headless",
"hls",
"html5",
"jwplayer",
"media",
"plyr",
"player",
"react",
"spec-compliant",
"universal",
"uploader",
"vds",
"video",
"videojs",
"vidstack",
"vime",
"vimeo",
"web-component",
"tailwind",
"universal",
"youtube"
]
}