-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "@hypha-dao/ual-hypha",
"version": "1.1.0",
"description": "UAL implementation for Hypha Wallet",
"type": "module",
"source": "index.js",
"main": "index.js",
"module": "index.js",
"browser": "index.js",
"directories": {
"demo": "demo"
},
"scripts": {
"test": "jest",
"build": "npx microbundle --external none index.js -o dist",
"demo": "cd demo && npm run start"
},
"jest": {
"modulePathIgnorePatterns": [
"demo"
]
},
"dependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@greymass/eosio": "^0.5.5",
"buffer": "^6.0.3",
"eosio-signing-request": "^2.4.0",
"eosjs": "^22.1.0",
"pako": "^2.0.4",
"qrcode": "^1.5.0",
"regenerator-runtime": "^0.13.11",
"text-encoding": "^0.7.0",
"universal-authenticator-library": "^0.3.0",
"util": "^0.12.4",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypha-dao/ual-hypha.git"
},
"keywords": [
"HYPHA",
"wallet",
"UAL"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hypha-dao/ual-hypha/issues"
},
"homepage": "https://github.com/hypha-dao/ual-hypha#readme",
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"node-fetch": "^3.3.1"
}
}