-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.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
{
"name": "@peersyst/react-native-transak",
"version": "1.0.0",
"description": "A React Native package that facilitates integration with Transak, allowing users to buy and sell cryptocurrencies within your app.",
"main": "src/index.tsx",
"types": "src/index.tsx",
"scripts": {
"prepublish": "yarn build",
"prebuild": "yarn clean && yarn lint",
"build": "node ./scripts/build.js",
"clean": "rm -rf dist",
"check-types": "tsc --noemit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.json --max-warnings 0 && yarn check-types"
},
"keywords": [
"react",
"react-native",
"transak",
"cryptocurrency",
"buy",
"sell"
],
"author": "Peersyst",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/react": "^18.2.63",
"@types/react-native": "0.72.6",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-native": "0.72.6",
"react-native-webview": "^13.8.1",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@types/react": "^18.0.0",
"@types/react-native": "0.72.6",
"react": "^18.2.0",
"react-native": "0.72.6",
"react-native-webview": "^13.8.1"
},
"homepage": "https://github.com/Peersyst/react-native-transak#readme",
"repository": "https://github.com/Peersyst/react-native-transak",
"bugs": {
"url": "https://github.com/Peersyst/react-native-transak/issues"
},
"private": false,
"publishConfig": {
"access": "public"
}
}