-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.66 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
{
"name": "@playkit-js/plugin-example",
"version": "1.0.0",
"description": "Pre-configured (live working example) plugin template of kaltura-player-js according to kaltura-player-js specification",
"main": "dist/playkit-plugin-example.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"translations/**/*"
],
"license": "AGPL-3.0",
"homepage": "https://github.com/kaltura/playkit-js-plugin-example",
"repository": {
"type": "git",
"url": "https://github.com/kaltura/playkit-js-plugin-example"
},
"keywords": [
"@playkit-js/plugin-example",
"plugin-example",
"kaltura",
"player"
],
"scripts": {
"serve": "webpack serve --open --mode development",
"watch": "webpack --mode development --watch",
"build:prod": "webpack --mode production",
"build": "yarn run build:prod && yarn run build:types",
"build:types": "tsc --build tsconfig-lib.json && mkdir -p lib && api-extractor run --local",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn run type-check --watch",
"lint": "eslint src/ --ext .js --ext .ts",
"lint:fix": "yarn run lint --fix",
"prettier": "prettier --write .",
"test": "karma start karma.conf.js",
"test:debug": "DEBUG_UNIT_TESTS=1 karma start karma.conf.js --auto-watch --no-single-run --browsers Chrome",
"test:watch": "karma start karma.conf.js --auto-watch --no-single-run",
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"precommit": "npm run build:prod && npm run type-check && npm run lint",
"pushTaggedRelease": "git push --follow-tags --no-verify origin master",
"release": "standard-version"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.8",
"@microsoft/api-extractor": "^7.39.1",
"@playkit-js/browserslist-config": "1.0.8",
"@playkit-js/kaltura-player-js": "^3.17.9-canary.0-0c8731f",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/preact-i18n": "1.2.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"babel-loader": "^9.1.3",
"chai": "^4.3.6",
"css-loader": "^6.9.0",
"eslint": "^8.56.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-prettier": "^5.1.3",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "latest",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^ 3.2.2",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"sinon": "^14.0.0",
"standard-version": "^9.5.0",
"style-loader": "^3.3.4",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.0.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"@playkit-js/kaltura-player-js": "^3.17.9-canary.0-0c8731f",
"@playkit-js/playkit-js": "^0.84.5-canary.0-df6fd72",
"@playkit-js/playkit-js-ui": "0.78.0-canary.0-b615ac6",
"preact": "10.4.6",
"preact-i18n": "2.0.0-preactx.2"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "Jonathan T. Gold",
"email": "[email protected]"
},
"browserslist": [
"extends @playkit-js/browserslist-config"
],
"contributors": [
"Jonathan T. Gold",
"Gilad Nadav",
"Sivan Arganov"
]
}