-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.33 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.33 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-native-vision-camera-monorepo",
"packageManager": "bun@1.3.9",
"type": "module",
"private": true,
"description": "Monorepo for react-native-vision-camera packages, documentation, and example apps.",
"author": "Marc Rousavy <me@mrousavy.com> (https://github.com/mrousavy)",
"workspaces": [
"packages/react-native-vision-camera",
"packages/react-native-vision-camera-barcode-scanner",
"packages/react-native-vision-camera-location",
"packages/react-native-vision-camera-resizer",
"packages/react-native-vision-camera-skia",
"packages/react-native-vision-camera-worklets",
"apps/simple-camera",
"docs"
],
"scripts": {
"bootstrap": "bun i && bun run build && bun example bundle-install && bun example pods",
"specs": "bun camera specs && bun location specs && bun scanner specs && bun resizer specs && bun worklets specs",
"build": "bun camera build && bun location build && bun scanner build && bun resizer build && bun worklets build && bun skia build",
"example": "bun --cwd apps/simple-camera",
"docs": "bun --cwd docs",
"camera": "bun --cwd packages/react-native-vision-camera",
"scanner": "bun --cwd packages/react-native-vision-camera-barcode-scanner",
"location": "bun --cwd packages/react-native-vision-camera-location",
"resizer": "bun --cwd packages/react-native-vision-camera-resizer",
"skia": "bun --cwd packages/react-native-vision-camera-skia",
"worklets": "bun --cwd packages/react-native-vision-camera-worklets",
"release": "./scripts/release.sh",
"lint-js": "biome check --write",
"lint-cpp": "./scripts/clang-format.sh",
"lint-swift": "./scripts/swift-format.sh",
"lint-kotlin": "./scripts/kotlin-format.sh",
"lint-all": "bun lint-cpp && bun lint-swift && bun lint-kotlin && bun lint-js"
},
"devDependencies": {
"jest-junit": "^16.0.0",
"@biomejs/biome": "^2.4.4",
"@tsconfig/react-native": "^3.0.9",
"@types/bun": "^1.3.9",
"@release-it-plugins/workspaces": "^5.0.3",
"@release-it/bumper": "^7.0.5",
"@release-it/conventional-changelog": "^10.0.5",
"release-it": "^19.2.4"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"release-it": {
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"hooks": {
"before:release": "bun i && bun run build && bun specs",
"after:bump": "scripts/try-install-lockfiles.sh"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "packages/react-native-vision-camera/package.json",
"path": "version"
},
{
"file": "packages/react-native-vision-camera-barcode-scanner/package.json",
"path": "version"
},
{
"file": "packages/react-native-vision-camera-location/package.json",
"path": "version"
},
{
"file": "packages/react-native-vision-camera-resizer/package.json",
"path": "version"
},
{
"file": "packages/react-native-vision-camera-skia/package.json",
"path": "version"
},
{
"file": "packages/react-native-vision-camera-worklets/package.json",
"path": "version"
},
{
"file": "apps/simple-camera/package.json",
"path": "version"
}
]
},
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "perf",
"section": "💨 Performance Improvements"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "chore(deps)",
"section": "🛠️ Dependency Upgrades"
},
{
"type": "docs",
"section": "📚 Documentation"
}
]
}
}
}
},
"patchedDependencies": {
"react-native@0.84.0": "patches/react-native@0.84.0.patch"
},
"version": "5.0.4"
}