-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.03 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
{
"name": "@j0nnyboi/safecoin-gateway-react",
"version": "0.7.6",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"repository": "[email protected]:civicteam/ociv-gatekeeper.git",
"dependencies": {
"@civic/common-gateway-react": "^0.2.0",
"@j0nnyboi/prove-safecoin-wallet": "^0.2.5",
"@j0nnyboi/safecoin-gateway-ts": "^0.8.2",
"@safecoin/web3.js": "^1.29.4"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"files": [
"/dist"
],
"scripts": {
"lint": "eslint '{src,test}/**/*.ts' --max-warnings 0",
"lint:fix": "yarn lint --fix",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc --noEmit false --outDir dist/esm -p tsconfig.build.json",
"build:cjs": "tsc --noEmit false --module commonjs --outDir dist/cjs -p tsconfig.build.json",
"prepare": "yarn build",
"script": "ts-node -O '{\"module\":\"commonjs\"}' --transpile-only --files"
},
"devDependencies": {
"typescript": "^4.6.4"
}
}