-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.84 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.84 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
105
106
107
108
109
110
111
112
{
"name": "@plutoxyz/react-native-sdk",
"version": "0.0.3",
"description": "React Native wrapper for PlutoSwiftSDK",
"license": "MIT",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/pluto/react-native-sdk"
},
"files": [
"src",
"lib",
"!ios/.xcode.env",
"!ios/.xcode.env.local",
"ios/PlutoProver.swift",
"ios/PlutoProverBridge.h",
"ios/PlutoProverBridge.m",
"ios/Podfile",
"!ios/Pods",
"!ios/Pods/**/*",
"!ios/Podfile.lock",
"!ios/**/*.xcworkspace",
"!ios/**/*.xcuserstate",
"android",
"react-native-pluto-sdk.podspec",
"LICENSE"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test": "jest --no-coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"sim": "npx react-native run-ios --simulator \"iPhone 16\"",
"prepare": "bob build",
"clean": "del-cli lib",
"build": "bob build",
"release": "release-it",
"prepublishOnly": "npm run build",
"package-check": "npm pack --dry-run"
},
"dependencies": {
"react-native-webview": "^13.13.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0"
},
"devDependencies": {
"react": "19.0.0",
"react-native": "0.78.0",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "15.0.1",
"@react-native-community/cli-platform-android": "15.0.1",
"@react-native-community/cli-platform-ios": "15.0.1",
"@react-native/babel-preset": "0.78.0",
"@react-native/eslint-config": "0.78.0",
"@react-native/metro-config": "0.78.0",
"@react-native/typescript-config": "0.78.0",
"@release-it/conventional-changelog": "^10.0.0",
"@testing-library/react-native": "^12.0.0",
"@types/jest": "^29.5.13",
"@types/react": "^19.0.0",
"@types/react-test-renderer": "^19.0.0",
"del-cli": "^6.0.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-native-builder-bob": "^0.37.0",
"react-test-renderer": "19.0.0",
"release-it": "^18.1.2",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
],
"files": [
"src/"
],
"exclude": [
"**/__tests__",
"**/*.test.ts",
"**/*.test.tsx"
]
}
}