-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 849 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 849 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
{
"name": "fedapay-reactjs",
"version": "1.1.2",
"description": "FedaPay integration for ReactJs applications",
"author": "FedaPay",
"license": "MIT",
"repository": "https://github.com/fedapay/fedapay-reactjs",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^4.9.5"
},
"files": [
"lib"
]
}