forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "@trezor/connect-plugin-stellar",
"version": "9.0.2",
"author": "Trezor <[email protected]>",
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/connect-plugin-stellar",
"description": "@trezor/connect plugin for Stellar",
"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",
"stellar"
],
"sideEffects": false,
"main": "lib/index.js",
"files": [
"lib/"
],
"peerDependencies": {
"@trezor/connect": "9.x.x",
"stellar-sdk": "^10.4.1"
},
"devDependencies": {
"jest": "^26.6.3",
"rimraf": "^5.0.1",
"stellar-base": "^8.2.2",
"stellar-sdk": "^10.4.1",
"typescript": "4.9.5"
},
"dependencies": {
"bignumber.js": "^9.1.1"
},
"scripts": {
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest",
"type-check": "tsc --build tsconfig.json",
"build:lib": "rimraf ./lib && yarn tsc --build tsconfig.lib.json"
}
}