-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
executable file
·108 lines (108 loc) · 2.61 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
100
101
102
103
104
105
106
107
108
{
"name": "@react-native-community/image-editor",
"version": "4.2.1",
"description": "React Native Image Editing native modules for iOS & Android",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"author": "Dawid Urbaniak <[email protected]>",
"contributors": [],
"homepage": "https://github.com/callstack/react-native-image-editor#readme",
"bugs": {
"url": "https://github.com/callstack/react-native-image-editor/issues"
},
"license": "MIT",
"keywords": [
"react-native",
"ios",
"android",
"react native",
"image editor",
"imageeditor",
"image"
],
"repository": {
"type": "git",
"url": "https://github.com/callstack/react-native-image-editor.git"
},
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!android/spotless.gradle",
"!**/__typetests__",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"ts": "yarn tsc --noEmit",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:android": "./android/gradlew -p android spotlessCheck --quiet",
"format:android": "./android/gradlew -p android spotlessapply",
"release": "release-it",
"build": "bob build",
"prepack": "yarn run build"
},
"peerDependencies": {
"react-native": ">=0.57.0"
},
"peerDependenciesMeta": {
"react-native": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@callstack/eslint-config": "^14.1.1",
"@react-native/babel-preset": "^0.74.83",
"@react-native/typescript-config": "^0.74.83",
"@types/react": "^18.3.3",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-native": "^0.74.1",
"react-native-builder-bob": "^0.23.2",
"react-native-test-app": "^2.5.35",
"release-it": "^10.3.1",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"codegenConfig": {
"name": "RNCImageEditorSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.reactnativecommunity.imageeditor"
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}