-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 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
{
"name": "brownfield",
"version": "3.0.0",
"license": "MIT",
"author": "Artur Morys-Magiera <artus9033@gmail.com>",
"bin": "dist/index.js",
"type": "module",
"contributors": [
"Artur Morys-Magiera <artus9033@gmail.com>",
"Oskar Kwasniewski <oskarkwasniewski@icloud.com>"
],
"homepage": "https://oss.callstack.com/react-native-brownfield",
"repository": {
"url": "git+https://github.com/callstack/react-native-brownfield/packages/brownfield"
},
"description": "Brownfield CLI for React Native, gathering all packages of the RN brownfield ecosystem",
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"test": "echo 'No tests'"
},
"keywords": [
"react-native-brownfield",
"brownfield",
"native",
"react native integration",
"cli"
],
"files": [
"src",
"dist",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@callstack/brownfield-cli": "workspace:^"
},
"devDependencies": {
"@types/node": "^25.0.8",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-node-import": "^1.0.5",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.7.4",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20"
}
}