-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "react-native-nitro",
"packageManager": "bun@1.1.21",
"private": true,
"version": "0.11.0",
"repository": "https://github.com/BubbleTrouble14/react-native-nitro-bip39",
"author": "Ronald Goedeke (https://github.com/BubbleTrouble14)",
"scripts": {
"check-all": "./scripts/clang-format.sh",
"bootstrap": "bun --filter=\"**\" install && bun tsc && bun --filter=\"react-native-nitro-example\" pods",
"typescript": "bun --filter=\"**\" typescript",
"release": "release-it",
"clean": "rm -rf packages/**/tsconfig.tsbuildinfo packages/**/node_modules packages/**/lib"
},
"workspaces": [
"packages/react-native-nitro-bip39",
"example"
],
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@release-it/bumper": "^6.0.1",
"@jamesacarr/eslint-formatter-github-actions": "^0.2.0",
"release-it": "^17.6.0"
},
"release-it": {
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"plugins": {
"@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"
}
]
}
}
}
}
}