-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "@openhpi/xikolo-video-player",
"version": "1.2.5",
"description": "Xikolo Video Player",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/video-player/video-player.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e --silent",
"test.watch": "stencil test --spec --e2e --watch --silent",
"prettier": "prettier --write .",
"prepare": "husky",
"lint": "eslint src/**/*{.ts,.tsx}"
},
"devDependencies": {
"@stencil-community/eslint-plugin": "0.8.0",
"@stencil-community/postcss": "2.2.0",
"@stencil/core": "4.21.0",
"@stencil/sass": "3.0.12",
"@types/jest": "27.5.2",
"@types/vimeo__player": "2.18.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "7.37.3",
"husky": "9.1.6",
"jest": "27.5.1",
"jest-cli": "27.5.1",
"lint-staged": "15.2.10",
"node-webvtt": "1.9.4",
"prettier": "3.3.3",
"puppeteer": "^21.11.0",
"split.js": "1.6.5"
},
"license": "MIT",
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "eslint"
},
"dependencies": {
"@playkit-js/ovp-provider": "^1.1.0",
"@playkit-js/playkit-js": "^0.84.19",
"@vimeo/player": "2.24.0",
"regenerator-runtime": "^0.14.1"
},
"engines": {
"node": ">= 20.18.1",
"npm": ">= 10"
}
}