-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.66 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.66 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
{
"name": "@alaneu/react-native-nitro-vto-monorepo",
"version": "0.11.6",
"description": "React Native library for glasses virtual try-on using ARCore and Filament",
"private": true,
"workspaces": [
"packages/vto-core-native",
"packages/react-native-nitro-vto",
"packages/react-native-vto",
"examples/example-new-arch",
"examples/example-old-arch"
],
"scripts": {
"postinstall": "npm run bundle --workspace=@alaneu/vto-core-native",
"bundle": "npm run bundle --workspace=@alaneu/vto-core-native",
"watch:core": "npm run watch --workspace=@alaneu/vto-core-native",
"release": "npm run release --workspace=packages/react-native-nitro-vto && npm run release --workspace=packages/react-native-vto && release-it"
},
"devDependencies": {
"@release-it/bumper": "^7.0.5",
"@release-it/conventional-changelog": "^10.0.4",
"@types/react": "19.1.0",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-builder-bob": "0.40.17",
"release-it": "^19.1.0",
"typescript": "5.9.3"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"tagAnnotation": "Release ${version}",
"requireCleanWorkingDir": false
},
"npm": false,
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"before:init": [
"npm run build --workspace=packages/react-native-nitro-vto",
"npm run build --workspace=packages/react-native-vto"
],
"after:bump": [
"npm install"
]
},
"plugins": {
"@release-it/bumper": {
"out": [
"package.json",
"packages/vto-core-native/package.json",
"packages/react-native-nitro-vto/package.json",
"packages/react-native-vto/package.json",
"examples/example-new-arch/package.json",
"examples/example-old-arch/package.json"
]
},
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"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"
}
]
}
}
}
}
}