-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.02 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
{
"name": "@profullstack/player",
"version": "0.7.0",
"description": "One web player for every source a Profullstack site serves: MP4, HLS, MPEG-2 transport streams and audio, with one control bar, on desktop, mobile, PWA and television.",
"keywords": [
"video",
"player",
"hls",
"mpegts",
"audio",
"pwa"
],
"license": "MIT",
"author": "Profullstack, Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/profullstack/player.git"
},
"homepage": "https://github.com/profullstack/player#readme",
"bugs": {
"url": "https://github.com/profullstack/player/issues"
},
"type": "module",
"sideEffects": [
"*.css"
],
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./codecs": {
"types": "./dist/codecs.d.ts",
"default": "./dist/codecs.js"
},
"./m3u": {
"types": "./dist/m3u.d.ts",
"default": "./dist/m3u.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
},
"./player.css": "./dist/player.css",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"hls.js": "^1.7.1",
"mpegts.js": "^1.8.2"
},
"peerDependencies": {
"react": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^19.0.0",
"@vitest/coverage-v8": "^3.2.6",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@11.18.0"
}