-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 KB
/
package.json
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
{
"name": "rn-tvos-tab-bar",
"version": "0.1.0",
"description": "Native Component for UITabBar on tvOS",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"js",
"ios",
"rn-tvos-tab-bar.podspec",
"!ios/build"
],
"keywords": [
"react-native",
"ios"
],
"repository": "https://github.com/yldio/rn-tvos-tab-bar.git",
"author": "YLD (https://github.com/yldio)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/yldio/rn-tvos-tab-bar/issues"
},
"homepage": "https://github.com/yldio/rn-tvos-tab-bar#readme",
"devDependencies": {
"@types/react": "^18.2.38",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-native": "npm:[email protected]",
"react-native-builder-bob": "^0.23.1",
"typescript": "^5.3.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"codegenConfig": {
"name": "YLDTabBarSpecs",
"type": "components",
"jsSrcsDir": "js"
},
"scripts": {
"format:js": "prettier --write --list-different './{js,src}/**/*.{js,ts,tsx}'",
"format:ios": "find ios/ -iname '*.h' -o -iname '*.m' -o -iname '*.cpp' -o -iname '*.mm' | xargs clang-format -i",
"format": "yarn format:js && yarn format:ios",
"lint": "eslint --max-warnings=0 --ext '.js,.ts,.tsx' --fix js src && prettier --check './{js,src}/**/*.{js,ts,tsx}'",
"prepare": "bob build"
},
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}