-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.92 KB
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
{
"name": "react-native-free-canvas",
"version": "2.1.0",
"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",
"demo": "yarn --cwd expo-example install && yarn --cwd expo-example start",
"demo:ios": "yarn --cwd expo-example install && yarn --cwd expo-example ios",
"demo:android": "yarn --cwd expo-example install && yarn --cwd expo-example android"
},
"source": "./src/index.tsx",
"react-native": "./src/index.tsx",
"main": "./lib/module/index.js",
"exports": {
"import": {
"types": "./lib/typescript/module/index.d.ts",
"default": "./lib/module/index.js"
},
"require": {
"types": "./lib/typescript/commonjs/index.d.ts",
"default": "./lib/commonjs/index.js"
}
},
"module": "./lib/module/index.js",
"types": "./lib/typescript/module/index.d.ts",
"repository": "https://github.com/doublelam/react-native-free-canvas",
"devDependencies": {
"@babel/core": "^7.29.7",
"@eslint/compat": "^2.1.0",
"@react-native/babel-preset": "0.86.0",
"@react-native/eslint-config": "0.86.0",
"@react-native/metro-config": "0.86.0",
"@react-native/typescript-config": "0.86.0",
"@shopify/react-native-skia": "2.8.0",
"@types/jest": "^29.5.14",
"@types/react": "19.2.17",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"eslint": "9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-native": "^5.0.0",
"jest": "^29.7.0",
"prettier": "3.9.5",
"react": "19.2.7",
"react-native": "0.86.0",
"react-native-builder-bob": "0.43.0",
"react-native-gesture-handler": "2.32.0",
"react-native-reanimated": "4.5.1",
"react-native-worklets": "0.10.2",
"typescript": "6.0.3"
},
"peerDependencies": {
"@shopify/react-native-skia": ">=2.0.0",
"react": ">=18.0.0",
"react-native": ">=0.72.0",
"react-native-gesture-handler": ">=2.0.0",
"react-native-reanimated": ">=4.1.0",
"react-native-worklets": ">=0.5.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"esm": true
}
],
[
"module",
{
"esm": true
}
],
"typescript"
]
},
"files": [
"lib",
"src"
],
"keywords": [
"react-native",
"canvas",
"ios",
"android",
"sketch",
"skia",
"draw",
"freehand"
],
"license": "MIT",
"packageManager": "yarn@1.22.22",
"dependencies": {
"promises-delivery": "1.1.0"
},
"author": "Lam <whatisurname7@gmail.com>"
}