-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
99 lines (99 loc) · 2.55 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@react-native-clipboard/clipboard",
"version": "1.14.3",
"description": "React Native Clipboard API for macOS, iOS, Android, and Windows",
"keywords": [
"Clipboard",
"getString",
"react-native",
"setString"
],
"homepage": "https://github.com/react-native-clipboard/clipboard#readme",
"bugs": {
"url": "https://github.com/react-native-clipboard/clipboard/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-clipboard/clipboard.git"
},
"license": "MIT",
"author": "M.Haris Baig <harisbaig100@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"RNCClipboard.podspec",
"ios",
"macos",
"android",
"windows",
"jest",
"src",
"!android/**/build/*"
],
"scripts": {
"ios": "react-native run-ios --project-path \"./example/ios\"",
"android": "react-native run-android --root example",
"windows": "cd example && react-native run-windows",
"start": "react-native start",
"build": "tsc",
"lint": "eslint src --ext .ts,.tsx --cache",
"prepare": "npm run build",
"test": "jest",
"type-check": "tsc --noEmit"
},
"jest": {
"preset": "react-native"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@callstack/react-native-visionos": "^0.73.0",
"@react-native/babel-preset": "^0.73.0",
"@react-native/eslint-config": "^0.73.0",
"@react-native/metro-config": "^0.73.0",
"@rnx-kit/align-deps": "^2.4.1",
"@rnx-kit/metro-config": "^1.3.15",
"@types/react": "^18.2.0",
"babel-jest": "^26.1.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^29.2.1",
"prettier": "^2.4.1",
"react": "18.2.0",
"react-native": "^0.73.0",
"react-native-macos": "^0.73.0",
"react-native-test-app": "^3.5.3",
"react-native-windows": "^0.73.0",
"react-test-renderer": "18.2.0",
"typescript": "^4.4.3"
},
"peerDependencies": {
"react": ">= 16.9.0",
"react-native": ">= 0.61.5",
"react-native-macos": ">= 0.61.0",
"react-native-windows": ">= 0.61.0"
},
"peerDependenciesMeta": {
"react-native-macos": {
"optional": true
},
"react-native-windows": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"codegenConfig": {
"name": "rnclipboard",
"type": "modules",
"jsSrcsDir": "./src",
"android": {
"javaPackageName": "com.reactnativecommunity.clipboard"
}
},
"packageManager": "yarn@4.1.1",
"workspaces": [
"example"
]
}