forked from computerjazz/react-native-swipeable-item
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.02 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
{
"name": "@onerouter/mars",
"version": "0.0.8",
"description": "A horizontally (RTL-aware) or vertically (no need for RTL?) swipeable row(/column) compatible with react-native-draggable-flatlist",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"react-native": "src/index.tsx",
"types": "types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --skipLibCheck --noEmit",
"build": "bob build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/OneRouter/MARS.git"
},
"keywords": [
"flatlist",
"react",
"native",
"gesture",
"swipe",
"delete"
],
"author": "Science/Art/Magic",
"license": "MIT",
"bugs": {
"url": "https://github.com/OneRouter/MARS/issues"
},
"homepage": "https://github.com/OneRouter/MARS#readme",
"peerDependencies": {
"react-dom": "^18.0.0",
"react-native": ">=0.64.0",
"react-native-gesture-handler": ">=2.0.0",
"react-native-reanimated": ">=2.8.0",
"react-native-web": "^0.18.10"
},
"dependencies": {
"@babel/preset-typescript": "^7.17.12"
},
"devDependencies": {
"@types/react": "^17.0.5",
"@types/react-native": "^0.64.5",
"babel-preset-expo": "^9.2.2",
"eslint-config-universe": "^11.1.1",
"husky": "^4.2.0",
"metro-react-native-babel-preset": "^0.71.0",
"prettier": "^2.2.1",
"pretty-quick": "^2.0.1",
"react": "^18.2.0",
"react-native": "^0.62.2",
"react-native-builder-bob": "^0.18.1",
"react-native-gesture-handler": "^2.0.0",
"react-native-reanimated": "^2.8.0",
"typescript": "^4.2.4"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"configFile": "./babel.config.js"
}
],
[
"module",
{
"configFile": "./babel.config.js"
}
],
"typescript"
]
}
}