forked from alexdonh/react-native-quick-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.31 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.31 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
{
"version": "0.7.14",
"scripts": {
"clean": "bun --filter='*' clean",
"deepclean": "bun --filter='*' deepclean && del-cli node_modules",
"specs": "bun --filter='react-native-quick-crypto' specs",
"bundle-install": "bun --filter='react-native-quick-crypto-example' bundle-install",
"pods": "bun --filter='react-native-quick-crypto-example' pods",
"start": "cd packages/example && bun start",
"bootstrap": "bun install && bun pods",
"tsc": "bun --filter='*' typescript",
"lint": "bun --filter='*' lint",
"lint:fix": "bun --filter='*' lint:fix",
"format": "bun --filter='*' format",
"format:fix": "bun --filter='*' format:fix",
"prepare": "bun --filter=\"react-native-quick-crypto\" prepare",
"release": "./scripts/release.sh"
},
"devDependencies": {
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "9.0.4",
"del-cli": "^6.0.0",
"release-it": "17.11.0"
},
"packageManager": "bun@1.1.26",
"release-it": {
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"hooks": {
"before:release": "bun bundle-install && bun pods && git add packages/example/ios/Podfile.lock"
},
"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"
}
]
}
}
}
},
"workspaces": [
"packages/example",
"packages/react-native-quick-crypto"
],
"patchedDependencies": {
"react-native@0.72.7": "patches/react-native@0.72.7.patch",
"react-native-fast-encoder@0.1.12": "patches/react-native-fast-encoder@0.1.12.patch"
}
}