-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·115 lines (115 loc) · 2.8 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
109
110
111
112
113
114
115
{
"name": "@react-native-oh-tpl/image-editor",
"version": "3.2.0-nc.0.1.2",
"description": "React Native Image Editing native modules for iOS & Android & Harmony",
"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"
},
"harmony": {
"alias": "@react-native-community/image-editor"
},
"license": "MIT",
"keywords": [
"react-native",
"ios",
"android",
"harmony",
"react native",
"image editor",
"imageeditor",
"image"
],
"repository": {
"type": "git",
"url": "https://github.com/react-native-oh-library/react-native-image-editor.git"
},
"files": [
"src",
"lib",
"android",
"ios",
"harmony",
"cpp",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__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.23.2",
"@babel/preset-env": "^7.23.2",
"@callstack/eslint-config": "^14.1.0",
"@react-native/typescript-config": "^0.74.0",
"@types/react": "^18.2.34",
"eslint": "^8.56.0",
"metro-react-native-babel-preset": "0.76.8",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-native": "^0.72.6",
"react-native-builder-bob": "^0.23.1",
"react-native-test-app": "^2.5.32",
"release-it": "^10.3.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@react-native-community/image-editor": "3.2.0"
},
"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"
}
]
]
}
}