-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.57 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.57 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": "react-native-cross-elements",
"version": "1.0.0",
"description": "Beautiful, Web, Native and TV friendly interactable components and spatial navigation for React Native (iOS, Android, Web, TV) with accessibility for voice and screen reader support.",
"source": "src/index",
"react-native": "src/index.ts",
"main": "dist/module/index",
"module": "dist/module/index",
"types": "dist/typescript/index.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"build": "npm run clean && bob build && npm pack",
"publish": "npm publish --access public"
},
"keywords": [
"tv",
"web",
"native",
"buttons",
"cross-platform",
"elements",
"components",
"spatial-navigation",
"rn-elements",
"react-native-elements"
],
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.34.0",
"@react-native/babel-preset": "^0.80.2",
"@types/jest": "^30.0.0",
"@types/lodash.uniqueid": "^4.0.8",
"@types/react": "^19.1.11",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"jest": "^30.1.1",
"react-native-builder-bob": "^0.40.13",
"rimraf": "^5.0.10",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
},
"dependencies": {
"@bam.tech/lrud": "^8.0.2",
"clsx": "^2.1.1",
"color": "^5.0.0",
"lodash": "^4.17.21",
"lodash.uniqueid": "^4.0.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-reanimated": ">=3.0.0",
"react-native-safe-area-context": ">=5.0.0"
},
"license": "MIT",
"readme": "./README.md",
"author": "ImRoodyDev <> (https://github.com/imroodydev)",
"homepage": "https://github.com/imroodydev/react-native-cross-elements#readme",
"repository": {
"type": "git",
"url": "https://github.com/imroodydev/react-native-cross-elements.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
[
"module",
{
"esm": true,
"jsxRuntime": "classic"
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}