-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.45 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
{
"name": "@theoplayer/react-native-drm",
"version": "1.8.1",
"description": "DRM connectors for react-native-theoplayer",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"CHANGELOG.md",
"!lib/typescript/example",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"typescript": "tsc --noEmit",
"prettier": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"manifest": "node manifest.js > src/manifest.json",
"prepare": "npm run manifest && bob build && husky"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"keywords": [
"react-native",
"THEOplayer",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "[email protected]:THEOplayer/react-native-theoplayer-drm.git"
},
"author": "THEO Technologies",
"license": "SEE LICENSE AT https://www.theoplayer.com/terms",
"homepage": "https://theoplayer.com/",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@react-native/eslint-config": "^0.75.2",
"@types/react": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"pod-install": "^0.1.39",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-native": "^0.74.5",
"react-native-builder-bob": "^0.23.2",
"react-native-theoplayer": "^8.7.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-theoplayer": "^5 || ^6 || ^7 || ^8"
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}