@playkit-js/media-melon 1.0.1-canary.0-4f7a8ed

Sign up to get free protection for your applications and to get access to all the features.
package/package.json ADDED
@@ -0,0 +1,94 @@
1
+ {
2
+ "name": "@playkit-js/media-melon",
3
+ "version": "1.0.1-canary.0-4f7a8ed",
4
+ "description": "",
5
+ "main": "dist/playkit-media-melon.js",
6
+ "types": "types/index.d.ts",
7
+ "files": [
8
+ "dist/",
9
+ "types/"
10
+ ],
11
+ "license": "Apache-2.0",
12
+ "homepage": "https://github.com/Kaltura-PS/playkit-js-media-melon.git",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/Kaltura-PS/playkit-js-media-melon.git"
16
+ },
17
+ "keywords": [
18
+ "@playkit-js/media-melon",
19
+ "media-melon",
20
+ "kaltura",
21
+ "player"
22
+ ],
23
+ "scripts": {
24
+ "dev": "npm run build:dev && webpack serve --open --mode development",
25
+ "watch": "webpack --watch --mode development",
26
+ "build:dev": "webpack --mode development",
27
+ "build": "webpack --mode production",
28
+ "types:check": "tsc src/index.ts src/types/global.d.ts --jsx react --jsxFactory h --noEmit --target ESNext --moduleResolution node --experimentalDecorators --jsxFragmentFactory Fragment",
29
+ "types:ganarate": "tsc src/index.ts src/types/global.d.ts --declaration --emitDeclarationOnly --outFile types/modules.ts --jsx react --jsxFactory h --jsxFragmentFactory Fragment --stripInternal true --target ESNext --moduleResolution node --experimentalDecorators",
30
+ "docs:ganarate": "typedoc",
31
+ "lint:check": "eslint src tests --ext .ts,.tsx,.js --color ",
32
+ "lint:fix": "npm run lint:check -- --fix",
33
+ "prettier:fix": "prettier --write .",
34
+ "release": "standard-version",
35
+ "pushTaggedRelease": "git push --follow-tags --no-verify origin main",
36
+ "prepare:demo": "sh scripts/prepare-demo.sh",
37
+ "pre:commit": "npm run types:check && npm run lint:check && npm run types:ganarate && npm run docs:ganarate"
38
+ },
39
+ "dependencies": {
40
+ "@playkit-js/common": "^1.2.13",
41
+ "@playkit-js/playkit-js-ui": "0.77.13",
42
+ "mm-kaltura-sdk": "1.0.2"
43
+ },
44
+ "kaltura": {
45
+ "name": "playkit-js-media-melon",
46
+ "dependencies": {
47
+ "playkit-kaltura-cuepoints": "3.0.6",
48
+ "playkit-ui-managers": "1.5.0"
49
+ }
50
+ },
51
+ "devDependencies": {
52
+ "@babel/core": "^7.17.10",
53
+ "@babel/preset-env": "^7.17.10",
54
+ "@babel/preset-react": "^7.16.7",
55
+ "@babel/preset-typescript": "^7.16.7",
56
+ "@playkit-js/kaltura-player-js": "canary",
57
+ "@playkit-js/playkit-js-ui": "canary",
58
+ "@playkit-js/ui-managers": "canary",
59
+ "@types/chai": "^4.3.3",
60
+ "@types/mocha": "^9.1.1",
61
+ "@types/node": "^14.11.2",
62
+ "@typescript-eslint/eslint-plugin": "^5.25.0",
63
+ "@typescript-eslint/parser": "^5.25.0",
64
+ "babel-loader": "^8.2.4",
65
+ "chai": "^4.3.6",
66
+ "conventional-github-releaser": "3.1.3",
67
+ "css-loader": "^6.7.1",
68
+ "eslint": "^7.32.0",
69
+ "eslint-config-preact": "^1.3.0",
70
+ "eslint-plugin-mocha": "^10.1.0",
71
+ "eslint-plugin-prettier": "^4.0.0",
72
+ "mocha": "^10.0.0",
73
+ "prettier": "^2.6.2",
74
+ "promise-polyfill": "^8.2.3",
75
+ "sass": "^1.52.1",
76
+ "sass-loader": "^13.0.0",
77
+ "sinon": "^14.0.0",
78
+ "standard-version": "^9.5.0",
79
+ "style-loader": "^3.3.1",
80
+ "ts-loader": "^9.2.8",
81
+ "typedoc": "^0.23.14",
82
+ "typedoc-plugin-missing-exports": "^1.0.0",
83
+ "typescript": "^4.8.2",
84
+ "webpack": "^5.74.0",
85
+ "webpack-cli": "^4.10.0",
86
+ "webpack-dev-server": "^4.10.1"
87
+ },
88
+ "peerDependencies": {
89
+ "@playkit-js/kaltura-player-js": "canary"
90
+ },
91
+ "publishConfig": {
92
+ "access": "public"
93
+ }
94
+ }
@@ -0,0 +1,9 @@
1
+ /* <reference types="./modules" /> */
2
+
3
+ /*
4
+ List here classes / interfaces / types you wand to export outside the package
5
+ for external usage from the auto-generated './modules.d.ts' file
6
+ */
7
+
8
+ // @ts-ignore
9
+ export { MediaMelonConfig } from 'types/media-melon-config';
@@ -0,0 +1,7 @@
1
+ declare module "types/media-melon-config" {
2
+ export type MediaMelonConfig = {};
3
+ }
4
+ declare module "media-melon" {
5
+ export const pluginName = "mediaMelon";
6
+ }
7
+ declare module "index" { }