-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.12 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
{
"name": "react-native-patterns",
"version": "1.0.8",
"description": "A component library to create patterns in React Native",
"repository": "https://github.com/lewiscasewell/react-native-patterns",
"author": "Lewis Casewell",
"license": "MIT",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"source": "src/index",
"scripts": {
"prepare": "bob build",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods"
},
"files": [
"lib",
"src"
],
"keywords": [
"react-native",
"ios",
"android",
"react",
"svg",
"art",
"pattern",
"pattern-library",
"library",
"performance",
"animation",
"stock",
"icons",
"beautiful",
"animated",
"skia",
"drawing",
"graphics",
"ui",
"canvas"
],
"peerDependencies": {
"react": ">=18",
"react-native": ">=0.69"
},
"devDependencies": {
"@shopify/react-native-skia": "1.4.2",
"@types/react": "^18.2.36",
"@types/react-native": "^0.72.5",
"pod-install": "^0.1.39",
"react-native-builder-bob": "^0.23.1",
"react-native-reanimated": "^3.15.4",
"typescript": "^5.2.2"
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"semi": true,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"semi": true
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.json"
}
]
]
}
}