forked from LunatiqueCoder/react-native-media-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.12 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
{
"name": "react-native-media-console",
"private": true,
"version": "2.2.4",
"description": "A media player for the react-native-video component",
"license": "MIT",
"source": "src/index",
"main": "lib/commonjs/index.js",
"types": "lib/typescript/index.d.ts",
"workspaces": [
"examples/*",
"packages/*"
],
"resolutions": {
"react-native": "npm:react-native-tvos@~0.74.2-0"
},
"expo": {
"install": {
"exclude": [
"react-native"
]
}
},
"keywords": [
"react-native",
"react-native-video",
"react video controls",
"react video player"
],
"bugs": {
"url": "https://github.com/LunatiqueCoder/react-native-media-console/issues"
},
"homepage": "https://github.com/LunatiqueCoder/react-native-media-console",
"author": "Ovidiu Cristescu (https://github.com/LunatiqueCoder)",
"repository": "[email protected]:LunatiqueCoder/react-native-media-console.git",
"scripts": {
"release": "release-it"
},
"release-it": {
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": false,
"github": {
"release": true,
"requireCleanWorkingDir": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
},
"@release-it-plugins/workspaces": {
"distTag": "latest"
},
"@release-it/bumper": {
"in": "package.json",
"out": "package.json"
}
}
},
"eslintIgnore": [
"node_modules/",
"./lib/"
],
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@release-it-plugins/workspaces": "4.2.0",
"@release-it/bumper": "6.0.1",
"@release-it/conventional-changelog": "8.0.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^7.14.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"prettier": "^2.5.1",
"release-it": "17.3.0",
"turbo": "^1.10.14"
}
}