g711-web-stream-player 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +273 -0
- package/dist/index.cjs +492 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +170 -0
- package/dist/index.d.ts +170 -0
- package/dist/index.js +482 -0
- package/dist/index.js.map +1 -0
- package/dist/react.cjs +518 -0
- package/dist/react.cjs.map +1 -0
- package/dist/react.d.cts +16 -0
- package/dist/react.d.ts +16 -0
- package/dist/react.js +516 -0
- package/dist/react.js.map +1 -0
- package/dist/vue.cjs +517 -0
- package/dist/vue.cjs.map +1 -0
- package/dist/vue.d.cts +17 -0
- package/dist/vue.d.ts +17 -0
- package/dist/vue.js +515 -0
- package/dist/vue.js.map +1 -0
- package/package.json +92 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "g711-web-stream-player",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "G.711 PCMA/PCMU streaming audio playback for browsers with FLV extraction, jitter buffering and noise reduction.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"g711",
|
|
7
|
+
"pcma",
|
|
8
|
+
"pcmu",
|
|
9
|
+
"flv",
|
|
10
|
+
"web-audio",
|
|
11
|
+
"audio-streaming",
|
|
12
|
+
"typescript",
|
|
13
|
+
"vue",
|
|
14
|
+
"react"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://github.com/AbelShine/g711-web-stream-player#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/AbelShine/g711-web-stream-player/issues"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/AbelShine/g711-web-stream-player.git"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"author": "AbelShine",
|
|
26
|
+
"type": "module",
|
|
27
|
+
"sideEffects": false,
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"README.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"main": "./dist/index.cjs",
|
|
34
|
+
"module": "./dist/index.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": {
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"import": "./dist/index.js",
|
|
40
|
+
"require": "./dist/index.cjs"
|
|
41
|
+
},
|
|
42
|
+
"./vue": {
|
|
43
|
+
"types": "./dist/vue.d.ts",
|
|
44
|
+
"import": "./dist/vue.js",
|
|
45
|
+
"require": "./dist/vue.cjs"
|
|
46
|
+
},
|
|
47
|
+
"./react": {
|
|
48
|
+
"types": "./dist/react.d.ts",
|
|
49
|
+
"import": "./dist/react.js",
|
|
50
|
+
"require": "./dist/react.cjs"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsup",
|
|
55
|
+
"dev": "tsup --watch",
|
|
56
|
+
"test": "vitest run",
|
|
57
|
+
"test:watch": "vitest",
|
|
58
|
+
"typecheck": "tsc --noEmit",
|
|
59
|
+
"check": "npm run typecheck && npm test && npm run build",
|
|
60
|
+
"prepublishOnly": "npm run check",
|
|
61
|
+
"prepare": "npm run build"
|
|
62
|
+
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"react": ">=16.8",
|
|
65
|
+
"vue": ">=2.6 <4",
|
|
66
|
+
"vue-demi": ">=0.14"
|
|
67
|
+
},
|
|
68
|
+
"peerDependenciesMeta": {
|
|
69
|
+
"react": {
|
|
70
|
+
"optional": true
|
|
71
|
+
},
|
|
72
|
+
"vue": {
|
|
73
|
+
"optional": true
|
|
74
|
+
},
|
|
75
|
+
"vue-demi": {
|
|
76
|
+
"optional": true
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"devDependencies": {
|
|
80
|
+
"@types/react": "^19.2.2",
|
|
81
|
+
"react": "^19.2.0",
|
|
82
|
+
"tsup": "^8.5.1",
|
|
83
|
+
"typescript": "^5.9.2",
|
|
84
|
+
"vitest": "^5.0.0",
|
|
85
|
+
"vue": "^3.5.22",
|
|
86
|
+
"vue-demi": "^0.14.10"
|
|
87
|
+
},
|
|
88
|
+
"engines": {
|
|
89
|
+
"node": ">=18"
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|