-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.23 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.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
{
"name": "rn-backstage",
"version": "1.5.3",
"description": "A zero-dependency developer/QA debug panel for React Native apps",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "lib/module/index",
"source": "src/index",
"files": [
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"example:ios": "cd example && npx expo run:ios",
"example:android": "cd example && npx expo run:android",
"typecheck": "tsc --noEmit",
"lint": "prettier --write \"**/*.{js,ts,tsx}\" && eslint \"**/*.{js,ts,tsx}\"",
"prepack": "bob build",
"release": "release-it",
"clean": "del-cli lib"
},
"keywords": [
"react-native",
"backstage",
"debug",
"developer-tools",
"qa-menu",
"dev-tools",
"console-logs",
"state-inspector"
],
"repository": "https://github.com/junocs/react-native-backstage",
"author": "Juno Sheridan <juno.sheridan@gmail.com> (https://github.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/junocs/react-native-backstage/issues"
},
"homepage": "https://github.com/junocs/react-native-backstage#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@types/react": "~19.2.10",
"del-cli": "^6.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"react": "19.2.0",
"react-native": "0.83.4",
"react-native-builder-bob": "^0.35.0",
"release-it": "^18.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.57.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"engines": {
"node": ">= 18.0.0"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"bracketSameLine": false,
"bracketSpacing": true,
"semi": false,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 100
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}