-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.34 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
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
{
"name": "@picketapi/picket-js",
"version": "0.0.102",
"description": "Javascript client for the Picket API",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"global": "dist/global.js",
"targets": {
"main": {
"context": "browser",
"outputFormat": "esmodule"
},
"module": {
"context": "browser"
},
"global": {
"context": "browser",
"isLibrary": false,
"outputFormat": "global",
"includeNodeModules": true
}
},
"scripts": {
"build": "npx parcel build",
"prepare": "npm run build",
"watch": "npx parcel watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/picketapi/picket-js.git"
},
"author": "picket",
"license": "ISC",
"bugs": {
"url": "https://github.com/picketapi/picket-js/issues"
},
"homepage": "https://github.com/picketapi/picket-js#readme",
"dependencies": {
"@coinbase/wallet-sdk": "^3.4.1",
"@onflow/fcl": "^1.3.2",
"@solana/wallet-adapter-base": "^0.9.5",
"@solana/wallet-adapter-wallets": "^0.16.1",
"@types/bs58": "^4.0.1",
"@types/qrcode": "^1.5.0",
"@types/react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"@types/react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0",
"@wagmi/chains": "^0.2.6",
"@wagmi/connectors": "^0.2.4",
"@wagmi/core": "^0.9.4",
"@walletconnect/ethereum-provider": "^1.8.0",
"@walletconnect/web3-provider": "^1.8.0",
"bignumber.js": "^9.1.0",
"bs58": "^4.0.1",
"ethers": "^5.5.1",
"pkce-challenge": "^3.0.0",
"qrcode": "^1.5.1",
"react": "^16.0.0 || ^17.0.2 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.2 || ^18.0.0",
"siwe": "^1.1.6",
"twind": "^0.16.17",
"typescript": "^4.7"
},
"devDependencies": {
"@parcel/packager-ts": "latest",
"@parcel/transformer-typescript-types": "latest",
"buffer": "^5.7.1",
"crypto-browserify": "^3.12.0",
"eslint": "8.10.0",
"eslint-config-next": "12.3.1",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"parcel": "latest",
"prettier": "^2.5.1",
"querystring-es3": "^0.2.1",
"stream-http": "^3.2.0",
"tailwindcss": "^3.1.8",
"url": "^0.11.0"
},
"keywords": [
"web3",
"auth",
"ethereum",
"solana",
"authentication"
]
}