-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.6 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": "react-native-free-canvas",
"version": "1.3.3",
"description": "A high-performance drawing and sketching library for React Native, built on @shopify/react-native-skia, with smooth zoom and pan functionalities.",
"scripts": {
"build": "bob build"
},
"source": "./src/index.tsx",
"main": "./lib/module/index.js",
"exports": {
"import": {
"types": "./lib/typescript/module/src/index.d.ts",
"default": "./lib/module/index.js"
},
"require": {
"types": "./lib/typescript/commonjs/src/index.d.ts",
"default": "./lib/commonjs/index.js"
}
},
"module": "./lib/module/index.js",
"types": "./lib/typescript/module/src/index.d.ts",
"repository": "https://github.com/doublelam/react-native-free-canvas",
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@react-native/babel-preset": "0.75.2",
"@react-native/eslint-config": "0.75.2",
"@react-native/metro-config": "0.75.2",
"@react-native/typescript-config": "0.75.2",
"@shopify/react-native-skia": "1.3.13",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.5",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"eslint": "9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"react": "18.3.1",
"react-native": "0.75.2",
"react-native-builder-bob": "^0.30.2",
"react-native-gesture-handler": "2.18.1",
"react-native-reanimated": "3.15.1",
"typescript": "5.5.4"
},
"peerDependencies": {
"@shopify/react-native-skia": ">=1.0.0",
"react": ">=18.0.0",
"react-native": ">=0.72.0",
"react-native-gesture-handler": ">=2.0.0",
"react-native-reanimated": ">=3.0.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"esm": true
}
],
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"esm": true
}
]
]
},
"files": [
"lib",
"src"
],
"keywords": [
"react-native",
"canvas",
"ios",
"android",
"sketch",
"skia",
"draw",
"freehand"
],
"license": "MIT",
"packageManager": "[email protected]",
"dependencies": {
"promises-delivery": "1.0.0"
},
"author": "Lam <[email protected]>"
}