-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
91 lines (91 loc) · 2.72 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
{
"name": "@georstat/react-native-image-cache",
"version": "3.1.0",
"access": "public",
"description": "React Native image file system caching for iOS and Android",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"files": [
"src",
"lib"
],
"keywords": [
"react-native",
"ios",
"android",
"image-cache",
"cache",
"file system image cache"
],
"repository": "https://github.com/georstat/react-native-image-cache",
"author": "Efstathios Ntonas - George Bakogiannis - George Kallinikos",
"license": "MIT",
"bugs": {
"url": "https://github.com/georstat/react-native-image-cache/issues"
},
"homepage": "https://github.com/georstat/react-native-image-cache",
"scripts": {
"tsc": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"build": "bob build && yarn copy-dts",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib/typescript",
"release": "release-it",
"example": "yarn --cwd example",
"prettier": "prettier \"**/*.{ts,tsx,js}\" --write",
"bootstrap": "yarn install && yarn example"
},
"dependencies": {
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@evilmartians/lefthook": "^1.4.10",
"@react-native/eslint-config": "^0.72.2",
"@release-it/conventional-changelog": "^7.0.1",
"@types/react": "^18.2.11",
"@types/react-native": "^0.72.2",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"auto-changelog": "^2.4.0",
"copyfiles": "^2.4.1",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native-a11y": "^3.3.0",
"jest": "^29.6.4",
"lefthook": "^1.4.10",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-native": "^0.72.4",
"react-native-builder-bob": "^0.21.3",
"react-native-file-access": "^3.0.4",
"react-native-reanimated": "3.4.2",
"release-it": "^16.1.5",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-file-access": ">=3.0.0",
"react-native-reanimated": ">=2.2.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}