-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.55 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.55 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
{
"name": "@callstack/brownie",
"version": "3.0.0",
"license": "MIT",
"author": "Oskar Kwaśniewski <oskarkwasniewski@icloud.com>",
"bin": {
"brownfield": "lib/commonjs/scripts/brownfield.js"
},
"contributors": [
"Artur Morys-Magiera <artus9033@gmail.com>",
"Oskar Kwasniewski <oskarkwasniewski@icloud.com>"
],
"homepage": "https://github.com/callstack/react-native-brownfield",
"repository": {
"url": "git+https://github.com/callstack/react-native-brownfield.git"
},
"description": "Shared state management between React Native and Native apps",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "./lib/typescript/commonjs/src/index.d.ts",
"react-native": "src/index",
"exports": {
".": {
"source": "./src/index.ts",
"import": {
"types": "./lib/typescript/module/src/index.d.ts",
"default": "./lib/module/index.js"
},
"require": {
"types": "./lib/typescript/commonjs/src/index.d.ts",
"default": "./lib/commonjs/index.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"build": "bob build",
"dev": "nodemon --watch src --ext js,ts,json --exec \"bob build\""
},
"keywords": [
"brownie",
"react-native-brownfield",
"react native brownfield",
"native",
"shared state",
"react native integration"
],
"files": [
"src",
"lib",
"ios",
"cpp",
"*.podspec",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*",
"README.md"
],
"publishConfig": {
"access": "public",
"tag": "alpha"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"@callstack/brownfield-cli": "workspace:^",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.27.1",
"@babel/runtime": "^7.25.0",
"@react-native/babel-preset": "0.82.1",
"@react-native/eslint-config": "0.82.1",
"@types/node": "^25.0.8",
"@types/react": "^19.1.1",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"import": "^0.0.6",
"nodemon": "^3.1.11",
"react-native": "0.82.1",
"react-native-builder-bob": "^0.40.17",
"typescript": "5.9.3"
},
"codegenConfig": {
"name": "Brownie",
"type": "modules",
"jsSrcsDir": "./src",
"android": {
"javaPackageName": "com.callstack.brownie"
}
},
"engines": {
"node": ">=20"
}
}