forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "@trezor/connect-plugin-ethereum",
"version": "9.0.1",
"author": "Trezor <[email protected]>",
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/connect-plugin-ethereum",
"description": "@trezor/connect plugin for Ethereum",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-suite.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor-suite/issues"
},
"keywords": [
"Trezor",
"trezor-connect",
"Ethereum"
],
"sideEffects": false,
"main": "lib/index.js",
"files": [
"lib/"
],
"peerDependencies": {
"@metamask/eth-sig-util": "^5.1.0"
},
"devDependencies": {
"@metamask/eth-sig-util": "^5.1.0",
"jest": "^26.6.3",
"rimraf": "^5.0.1",
"typescript": "4.9.5"
},
"scripts": {
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest --verbose -c jest.config.js",
"type-check": "tsc --build tsconfig.json",
"build:lib": "rimraf ./lib && yarn tsc --build tsconfig.lib.json"
}
}