-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.69 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
{
"name": "@theoplayer/react-native-ui",
"version": "0.10.0",
"description": "A React Native UI for @theoplayer/react-native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"cpp",
"CHANGELOG.md",
"!lib/typescript/example",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"typescript": "tsc --noEmit",
"prettier": "prettier --check \"(src|example)/**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"(src|example)/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"{src,example}/**/*.{ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"prepare": "bob build && husky install",
"docs": "typedoc --treatWarningsAsErrors"
},
"lint-staged": {
"(src|example)/**/*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"keywords": [
"react-native",
"THEOplayer",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git@github.com:THEOplayer/react-native-theoplayer-ui.git"
},
"author": "THEO Technologies",
"license": "SEE LICENSE AT https://www.theoplayer.com/terms",
"homepage": "https://theoplayer.com/",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@react-native/eslint-config": "^0.75.4",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pod-install": "^0.1.39",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-native": "^0.75.4",
"react-native-builder-bob": "^0.27.0",
"react-native-google-cast": "^4.8.3",
"react-native-svg": "^15.8.0",
"react-native-theoplayer": "^8.5.0",
"typedoc": "^0.25.13",
"typedoc-plugin-external-resolver": "^1.0.3",
"typedoc-plugin-mdn-links": "^3.3.4",
"typescript": "^4.9.5",
"typescript-eslint": "^8.11.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-google-cast": "*",
"react-native-svg": "^13.8.0 || ^14 || ^15",
"react-native-theoplayer": "^2.7.0 || ^3 || ^7 || ^8"
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"dependencies": {
"@miblanchard/react-native-slider": "^2.6.0",
"react-native-url-polyfill": "^1.3.0",
"url-polyfill": "^1.1.12"
}
}