-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
61 lines (61 loc) · 1.86 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
{
"name": "expo-video-player",
"version": "2.2.0",
"private": false,
"description": "Customizable Video Player controls for Expo",
"keywords": [
"customizable",
"expo",
"player",
"react-native",
"video-player",
"expo-video-player",
"videoplayer",
"expo-videoplayer"
],
"homepage": "https://github.com/ihmpavel/expo-video-player",
"bugs": "https://github.com/ihmpavel/expo-video-player/issues",
"repository": {
"type": "git"
},
"license": "MIT",
"author": "Pavel Ihm",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint \"lib/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"lib/**/*.{js,ts,tsx}\" --fix"
},
"devDependencies": {
"@react-native-community/slider": "^4.3.1",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.4",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"expo": "^46.0.13",
"expo-av": "^12.0.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.70.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@react-native-community/slider": ">=4.0.0",
"expo": ">=38.0.0",
"expo-av": ">=5.0.2"
},
"dependencies": {
"tslib": "^2.4.0"
}
}