-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.42 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.42 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-native-video-monorepo",
"packageManager": "bun@1.1.42",
"version": "7.0.0-beta.8",
"private": true,
"repository": "https://github.com/TheWidlarzGroup/react-native-video",
"author": "TheWidlarzGroup <hi@thewidlarzgroup.com> (https://github.com/TheWidlarzGroup)",
"workspaces": [
"packages/react-native-video",
"packages/drm-plugin",
"example",
"docs"
],
"scripts": {
"build": "bun --filter=\"./packages/**\" run build",
"specs": "bun --filter=\"./packages/**\" specs",
"lint": "bun --filter=\"**\" lint",
"typecheck": "bun --filter=\"**\" typecheck",
"clean": "git clean -xdf",
"react-native-video": "bun run --cwd packages/react-native-video",
"drm-plugin": "bun run --cwd packages/drm-plugin",
"example": "bun run --cwd example",
"docs": "bun run --cwd docs",
"postinstall": "patch-package --patch-dir example/patches",
"release:github": "release-it --preRelease beta",
"release": "./scripts/release.sh"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@eslint/js": "^9.10.0",
"@evilmartians/lefthook": "^1.5.0",
"@react-native/eslint-config": "^0.77.0",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^8.0.2",
"@tsconfig/react-native": "^2.0.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^24.9.1",
"@types/react": "^18.2.44",
"commitlint": "^17.0.2",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^5.0.1",
"patch-package": "^8.0.0",
"prettier": "^3.0.3",
"react": "18.3.1",
"react-native": "^0.77.0",
"release-it": "^17.10.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.13.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"hooks": {
"before:release": "bun run --cwd packages/react-native-video build && bun run --cwd packages/drm-plugin build",
"before:git": "bun install && bun example bundle-install && bun example pods && git add bun.lock && git add example/ios/Podfile.lock"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "packages/react-native-video/package.json",
"path": "version"
},
{
"file": "packages/drm-plugin/package.json",
"path": "version"
},
{
"file": "example/package.json",
"path": "version"
}
]
},
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features ✨"
},
{
"type": "fix",
"section": "Bug Fixes 🐛"
},
{
"type": "refactor",
"section": "Code Refactoring 🛠"
},
{
"type": "chore(deps)",
"section": "Dependency Upgrades 📦"
},
{
"type": "docs",
"section": "Documentation 📚"
}
]
}
}
}
}
}