-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
125 lines (125 loc) · 3.63 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "react-native-nitro-sqlite-workspace",
"version": "8.2.2-nitro.1",
"packageManager": "[email protected]",
"private": "true",
"workspaces": [
"package",
"example"
],
"repository": {
"type": "git",
"url": "git+https://github.com/margelo/react-native-nitro-sqlite.git"
},
"author": "Margelo <[email protected]> (https://github.com/margelo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/margelo/react-native-nitro-sqlite/issues"
},
"homepage": "https://github.com/margelo/react-native-nitro-sqlite#readme",
"scripts": {
"postinstall": "patch-package",
"typescript": "bun --filter=\"**\" typescript",
"lint": "bun package lint && bun example lint",
"lint-cpp": "./scripts/clang-format.sh",
"clean": "rm -rf **/tsconfig.tsbuildinfo node_modules package/node_module package/lib",
"release": "./scripts/release.sh",
"package": "bun --cwd package",
"example": "bun --cwd example"
},
"dependencies": {
"patch-package": "^8.0.0",
"react": "18.3.1",
"react-native": "0.76.1",
"react-native-nitro-modules": "0.20.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/preset-env": "^7.25.4",
"@babel/runtime": "^7.25.4",
"@eslint/js": "^9.10.0",
"@jamesacarr/eslint-formatter-github-actions": "^0.2.0",
"@react-native/babel-preset": "0.76.1",
"@react-native/eslint-config": "0.76.1",
"@react-native/metro-config": "0.76.1",
"@react-native/typescript-config": "0.76.1",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^8.0.2",
"@tsconfig/react-native": "^2.0.2",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.4",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nitro-codegen": "0.20.1",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"typescript": "~5.5.4",
"typescript-eslint": "^8.13.0"
},
"release-it": {
"npm": false,
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"hooks": {
"before:release": "bun example bundle-install && bun example pods && git add example/ios/Podfile.lock"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "example/package.json",
"path": "version"
},
{
"file": "example/package.json",
"path": "dependencies.react-native-nitro-sqlite"
}
]
},
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "perf",
"section": "💨 Performance Improvements"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "chore",
"section": "🏗️ Project configuration and build flow"
},
{
"type": "chore(deps)",
"section": "🛠️ Dependency Upgrades"
},
{
"type": "docs",
"section": "📚 Documentation"
}
]
}
}
}
}
}