This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
95 lines (95 loc) · 2.63 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
{
"name": "media-stream-player",
"version": "8.1.2",
"description": "Player built on top of media-stream-library",
"license": "MIT",
"main": "dist/index-cjs.js",
"module": "dist/index-esm.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "yarn lint:ts && yarn prettier:check",
"lint:fix": "yarn lint:ts --fix && yarn reformat",
"lint:ts": "eslint --ext .ts,.tsx . --cache",
"lint:css": "stylelint \"./**/*.tsx\"",
"prettier:check": "prettier --check 'lib/**/*.{js,ts,jsx,tsx}'",
"prettier:fix": "prettier --write 'lib/**/*.{js,ts,jsx,tsx}' --fix --loglevel silent",
"test": "jest --coverage --passWithNoTests",
"dev": "node vite.js",
"build:types": "yarn tsc",
"build:bundle": "node esbuild.js && sbin/copyMinified.sh",
"build": "yarn build:types && yarn build:bundle",
"release": "sbin/release.py"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/media-stream-player-js"
},
"keywords": [
"video",
"live",
"streaming",
"rtsp",
"ip",
"camera"
],
"dependencies": {
"@juggle/resize-observer": "3.4.0",
"debug": "4.3.4",
"react-hooks-shareable": "1.51.3"
},
"peerDependencies": {
"luxon": "^2.4.0",
"media-stream-library": "^11.1.1",
"react": "^17.0.2 || ^18.1.0",
"react-dom": "^17.0.2 || ^18.1.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/jest": "28.1.8",
"@types/luxon": "3.0.0",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.34.0",
"@typescript-eslint/parser": "5.34.0",
"@vitejs/plugin-react": "2.0.1",
"chalk": "5.0.1",
"esbuild": "0.15.5",
"eslint": "8.22.0",
"eslint-config-typescript-shareable": "1.8.0",
"eslint-plugin-functional": "4.2.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "28.1.3",
"luxon": "3.0.1",
"media-stream-library": "11.1.1",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"semver": "7.3.7",
"styled-components": "5.3.5",
"stylelint": "14.11.0",
"ts-jest": "28.0.8",
"typescript": "4.7.4",
"vite": "3.0.9"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.ts$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"packageManager": "[email protected]"
}