-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.19 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@upbond/upbond-embed",
"version": "3.0.0-rc.4",
"description": "Embed script for Upbond",
"main": "dist/upbondEmbed.cjs.js",
"module": "dist/upbondEmbed.esm.js",
"unpkg": "dist/upbondEmbed.umd.min.js",
"jsdelivr": "dist/upbondEmbed.umd.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"prepack": "npm run build",
"lint:ts": "eslint --fix 'src/**/*.ts'",
"prepare": "husky install",
"build:local": "npm run build && node embed-build.js"
},
"peerDependencies": {
"@babel/runtime": "7.x"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/upbond"
},
"dependencies": {
"@ansugroup/timing-safe-equal": "^0.1.3",
"@metamask/obs-store": "^7.0.0",
"@rashtaurigae/encryption-utils": "^2.0.1",
"@toruslabs/broadcast-channel": "^6.1.1",
"@toruslabs/http-helpers": "^3.2.0",
"@toruslabs/openlogin": "^2.7.0",
"@toruslabs/openlogin-jrpc": "^2.6.0",
"@toruslabs/openlogin-utils": "^2.1.0",
"@toruslabs/torus.js": "^6.2.0",
"create-hash": "^1.2.0",
"crypto-browserify": "^3.12.0",
"end-of-stream": "^1.4.4",
"eth-rpc-errors": "^4.0.3",
"ethereumjs-util": "^7.1.5",
"ethers": "5.7.2",
"events": "^3.3.0",
"fast-deep-equal": "^3.1.3",
"is-stream": "^2.0.1",
"lodash.merge": "^4.6.2",
"loglevel": "^1.8.0",
"once": "^1.4.0",
"pump": "^3.0.0",
"web3-token": "^1.0.4"
},
"devDependencies": {
"@babel/runtime": "^7.19.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@toruslabs/eslint-config-typescript": "^1.1.0",
"@toruslabs/torus-scripts": "^1.1.1",
"@types/create-hash": "^1.2.2",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^16",
"@types/once": "^1.4.0",
"@types/readable-stream": "^2.3.14",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"cross-env": "^7.0.3",
"empty-module": "0.0.2",
"eslint": "^8.23.1",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"mocha": {
"timeout": 0
},
"keywords": [
"upbond",
"wallet",
"ERC20",
"Ethereum",
"embed",
"login",
"OAuth",
"crypto"
],
"author": "Upbond",
"license": "MIT",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json, md}": [
"prettier --write"
]
},
"engines": {
"node": ">=14.17.0",
"npm": ">=6.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upbond/embed.git"
},
"bugs": {
"url": "https://github.com/upbond/embed/issues"
},
"homepage": "https://github.com/upbond/embed#readme"
}