forked from margelo/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
106 lines (106 loc) · 3.03 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.03 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
{
"version": "1.0.18",
"type": "module",
"scripts": {
"clang-format": "./scripts/clang-format.sh",
"clean": "bun --filter='*' clean",
"clean:deep": "bun --filter='*' clean:deep && 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": "bun --cwd example start",
"postinstall": "git submodule update --init --recursive 2>/dev/null || true",
"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": "husky && bun --filter='react-native-quick-crypto' prepare",
"lint-staged": "lint-staged --no-stash",
"release": "./scripts/release.sh"
},
"lint-staged": {
"example/**/*.{js,jsx,ts,tsx}": [
"bun lint",
"bun format"
],
"packages/react-native-quick-crypto/**/*.{js,jsx,ts,tsx}": [
"bun lint",
"bun format"
]
},
"devDependencies": {
"@eslint/compat": "1.2.8",
"@eslint/js": "9.24.0",
"@release-it/bumper": "7.0.5",
"@release-it/conventional-changelog": "10.0.1",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "8.43.0",
"@typescript-eslint/parser": "8.43.0",
"eslint": "9.24.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react-native": "5.0.0",
"husky": "9.1.7",
"lint-staged": "16.1.6",
"nitrogen": "0.33.2",
"prettier": "3.5.3",
"release-it": "19.0.5",
"typescript": "5.8.3",
"typescript-eslint": "8.43.0"
},
"packageManager": "bun@1.2.0",
"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 example/ios/Podfile.lock bun.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/react-native-quick-crypto",
"example"
],
"dependencies": {
"caniuse-lite": "1.0.30001757"
}
}