-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.23 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 4.23 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "react-native-nitro-sqlite-workspace",
"version": "9.6.0",
"packageManager": "bun@1.3.1",
"private": "true",
"workspaces": [
"package",
"example"
],
"repository": {
"type": "git",
"url": "git+https://github.com/margelo/react-native-nitro-sqlite.git"
},
"author": "Margelo <hello@margelo.com> (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",
"typecheck": "bun --filter=\"**\" typecheck",
"lint": "bun package lint && bun example lint",
"lint-cpp": "./scripts/clang-format.sh",
"prettier": "prettier --write .",
"clean": "rm -rf **/tsconfig.tsbuildinfo node_modules package/node_module package/lib",
"release": "./scripts/release.sh",
"package": "bun --cwd package",
"example": "bun --cwd example"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"patch-package": "^8.0.0",
"react": "19.2.3",
"react-native": "0.85.0-rc.0",
"react-native-nitro-modules": "0.35.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/preset-env": "^7.25.4",
"@babel/runtime": "^7.25.4",
"@eslint/js": "^9.10.0",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.85.0-rc.0",
"@react-native/eslint-config": "0.85.0-rc.0",
"@react-native/metro-config": "0.85.0-rc.0",
"@react-native/typescript-config": "0.85.0-rc.0",
"@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": "^19.1.1",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"nitrogen": "0.35.0",
"prettier": "^3.6.2",
"release-it": "^19.2.4",
"typeorm": "0.3.27",
"typescript": "^5.8.3",
"typescript-eslint": "^8.46.3"
},
"release-it": {
"npm": false,
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true,
"tokenRef": "RELEASE_IT_GITHUB_TOKEN",
"skipChecks": true,
"comments": {
"submit": true
}
},
"hooks": {
"before:release": "bun example bundle-install && bun example pods && git add example/ios/Podfile.lock"
},
"plugins": {
"@release-it/bumper": {
"in": {
"file": "package/package.json",
"path": "version"
},
"out": [
{
"file": "package.json",
"path": "version"
},
{
"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": "refactor",
"section": "🔄 Code Refactoring"
},
{
"type": "chore",
"section": "🏗️ Project configuration and build flow"
},
{
"type": "chore(deps)",
"section": "🛠️ Dependency Upgrades"
},
{
"type": "docs",
"section": "📚 Documentation"
}
]
}
}
}
}
}