-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"name": "react-native-linear-gradient",
"version": "3.0.0-beta.3",
"description": "A <LinearGradient> element for React Native",
"main": "dist/index.js",
"react-native": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"android",
"dist",
"ios",
"jest",
"src",
"RNLinearGradient.podspec"
],
"scripts": {
"build": "babel --extensions '.ts,.tsx' --out-dir dist src && tsc",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-linear-gradient/react-native-linear-gradient.git"
},
"author": "Brent Vatne <brentvatne@gmail.com> (https://github.com/brentvatne)",
"contributors": [
"Dmitry Gladkov <dmitry.gladkov@gmail.com> (https://github.com/dgladkov)",
"Frieder Bluemle <frieder.bluemle@gmail.com> (https://github.com/friederbluemle)",
"Gant Laborde <gant@infinite.red> (https://github.com/gantman)",
"Nick Hudkins <nick@nickhudkins.com> (https://github.com/nickhudkins)",
"Radek Pietruszewski <radexpl@gmail.com> (https://github.com/radex)"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.20.0",
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@react-native/babel-preset": "0.75.5",
"@react-native/eslint-config": "0.75.5",
"@types/react": "^18.2.6",
"eslint": "^8.57.0",
"prettier": "2.8.8",
"react": "18.3.1",
"react-native": "0.75.5",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"codegenConfig": {
"name": "RNLinearGradientSpec",
"type": "components",
"jsSrcsDir": "src",
"ios": {
"componentProvider": {
"RNLinearGradient": "RNLinearGradient"
}
}
}
}