-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1003 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1003 Bytes
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
{
"name": "react-braintree-components",
"version": "1.2.0",
"description": "React components for Braintree integration, including HostedFields, PayPal, Apple Pay and Google Pay.",
"repository": {
"type": "git",
"url": "https://github.com/LigniteSoftware/react-braintree-components"
},
"scripts": {
"build": "tsc",
"reinstall": "rm -rf node_modules/ package-lock.json && npm i"
},
"peerDependencies": {
"react": "19.0.0"
},
"dependencies": {
"@types/braintree-web": "^3.96.17",
"braintree-web": "^3.117.1"
},
"devDependencies": {
"@types/applepayjs": "^3.0.4",
"@types/node": "^22.13.13",
"@types/googlepay": "^0.6.4",
"@types/paypal-checkout-components": "^4.0.8",
"@types/prop-types": "^15.7.14",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"prop-types": "^15.8.1"
},
"files": [
"lib/**/*.js",
"lib/**/*.jsx",
"lib/**/*.d.ts"
],
"main": "lib/index.js",
"types": "lib/index.d.ts"
}