forked from safe-global/safe-apps-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1016 Bytes
/
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
{
"name": "@gnosis.pm/safe-apps-web3modal",
"version": "17.0.2",
"description": "A web3modal wrapper for Safe App support",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"build": "yarn rimraf dist && tsc",
"test": "echo No tests specified"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/safe-apps-sdk.git"
},
"author": "Gnosis (https://gnosis.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gnosis/safe-apps-sdk/issues"
},
"homepage": "https://github.com/gnosis/safe-apps-sdk#readme",
"devDependencies": {
"@gnosis.pm/safe-apps-sdk": "7.8.0",
"rimraf": "^3.0.2",
"web3modal": "^1.9.8"
},
"peerDependencies": {
"@gnosis.pm/safe-apps-sdk": "7.8.0",
"web3modal": "^1.9.3"
},
"dependencies": {
"@gnosis.pm/safe-apps-provider": "0.14.0"
},
"publishConfig": {
"access": "public"
}
}