-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.98 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.98 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
{
"name": "react-native-nitro-image-monorepo",
"private": true,
"version": "0.13.1",
"repository": "https://github.com/mrousavy/react-native-nitro-image.git",
"author": "Marc Rousavy <me@mrousavy.com> (https://github.com/mrousavy)",
"workspaces": [
"packages/react-native-nitro-image",
"packages/react-native-nitro-web-image",
"example"
],
"scripts": {
"build": "bun run --cwd packages/react-native-nitro-image build && bun run --cwd packages/react-native-nitro-web-image build",
"specs": "bun run build && bun run --cwd packages/react-native-nitro-image specs && bun run --cwd packages/react-native-nitro-web-image specs",
"bootstrap": "bun i && bun run build && cd example && bundle install && bun pods",
"typecheck": "bun --filter=\"**\" typecheck",
"lint": "biome check --write",
"lint-ci": "biome check",
"clean": "git clean -dfx",
"release": "./scripts/release.sh",
"image": "bun --cwd packages/react-native-nitro-image",
"web-image": "bun --cwd packages/react-native-nitro-web-image",
"example": "bun --cwd example"
},
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@release-it-plugins/workspaces": "^5.0.3",
"@release-it/bumper": "^7.0.5",
"@release-it/conventional-changelog": "^10.0.1",
"@tsconfig/react-native": "^2.0.3",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"react": "19.1.0",
"react-native": "0.81.0",
"react-native-builder-bob": "^0.37.0",
"release-it": "^19.0.4",
"typescript": "5.8.3"
},
"release-it": {
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"hooks": {
"before:release": "bun i",
"after:bump": "scripts/try-install-lockfiles.sh"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "packages/react-native-nitro-image/package.json",
"path": "version"
},
{
"file": "packages/react-native-nitro-web-image/package.json",
"path": "version"
},
{
"file": "example/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"
}
]
}
}
}
}
}