-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 793 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 793 Bytes
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
{
"name": "react-native-duckdb-workspace",
"version": "0.1.0",
"packageManager": "bun@1.3.1",
"private": true,
"workspaces": [
"package",
"example"
],
"scripts": {
"typecheck": "bun --filter=\"**\" typecheck",
"lint": "bun package lint",
"clean": "rm -rf **/tsconfig.tsbuildinfo node_modules package/node_modules package/lib",
"package": "bun --cwd package",
"example": "bun --cwd example"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"react": "19.1.1",
"react-native": "0.82.1",
"react-native-nitro-modules": "0.33.9"
},
"devDependencies": {
"@react-native/babel-preset": "0.82.1",
"@react-native/metro-config": "0.82.1",
"nitrogen": "0.33.9",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
}
}