forked from ian-wd/react-native-sketch-canvas
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 2.73 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
{
"name": "@sourcetoad/react-native-sketch-canvas",
"repository": {
"type": "git",
"url": "https://github.com/sourcetoad/react-native-sketch-canvas"
},
"version": "1.3.2",
"description": "react-native-sketch-canvas allows you to draw / sketch on both iOS and Android devices and sync the drawing data between users. Of course you can save as image.",
"author": "Terry Lin",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"RNSketchCanvas.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "npm run build",
"example:start": "cd example && npm start",
"example:android": "cd example && npm run android",
"example:ios": "cd example && npm run ios",
"build": "bob build",
"pods": "cd example/ios && bundle install && bundle exec pod install && cd ../.."
},
"keywords": [
"react-native",
"react-native-sketch",
"react-native-svg",
"react",
"native",
"sketch",
"svg",
"draw"
],
"nativePackage": true,
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": ">= 0.74.1"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.2",
"@react-native/babel-preset": "^0.73.18",
"@types/jest": "^29.5.3",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.2.1",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.74.3",
"react-native-builder-bob": "^0.20.0",
"react-native-camera": "https://github.com/sourcetoad/react-native-camera#ee265b22c7a3544a720478a6397d0e547430ff93",
"react-test-renderer": "18.1.0",
"typescript": "^5.0.2"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/src/__tests__/Setup",
"<rootDir>/example/",
"<rootDir>/lib/"
],
"setupFiles": [
"<rootDir>/src/__tests__/Setup.tsx"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}