forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.99 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
{
"name": "@trezor/connect",
"version": "9.0.5",
"author": "Trezor <[email protected]>",
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/connect",
"description": "High-level javascript interface for Trezor hardware wallet.",
"npmPublishAccess": "public",
"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",
"javascript"
],
"sideEffects": false,
"main": "lib/index",
"browser": {
"./lib/index": "./lib/index-browser",
"./lib/utils/assets": "./lib/utils/assets-browser",
"./lib/workers/workers": "./lib/workers/workers-browser"
},
"react-native": {
"./lib/index": "./lib/index",
"./lib/workers/workers": "./lib/workers/workers-react-native",
"./lib/utils/assets": "./lib/utils/assets-native"
},
"files": [
"lib/",
"!**/*.map"
],
"scripts": {
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest",
"type-check": "tsc --build",
"build:lib": "rimraf ./lib && yarn tsc --build tsconfig.lib.json",
"version:beta": "tsx scripts/bump-version.ts prerelease",
"version:patch": "tsx scripts/bump-version.ts patch",
"version:minor": "tsx scripts/bump-version.ts minor",
"version:major": "tsx scripts/bump-version.ts major",
"test:e2e:web": "ts-node -O '{\"module\": \"commonjs\"}' ./e2e/run.ts web",
"test:e2e:node": "ts-node -O '{\"module\": \"commonjs\"}' ./e2e/run.ts node",
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
"prepublish": "yarn tsx ../../scripts/prepublish.js"
},
"dependencies": {
"@trezor/blockchain-link": "workspace:^2.1.6",
"@trezor/connect-common": "workspace:0.0.11",
"@trezor/transport": "workspace:^1.1.6",
"@trezor/utils": "workspace:^9.0.4",
"@trezor/utxo-lib": "workspace:^1.0.2",
"bignumber.js": "^9.1.0",
"blakejs": "^1.2.1",
"bowser": "^2.11.0",
"cross-fetch": "^3.1.5",
"events": "^3.3.0",
"parse-uri": "1.0.7",
"randombytes": "2.1.0"
},
"devDependencies": {
"@trezor/connect-analytics": "workspace:*",
"@trezor/trezor-user-env-link": "workspace:*",
"@types/karma": "^6.3.3",
"@types/parse-uri": "^1.0.0",
"@types/randombytes": "^2.0.0",
"jest": "^26.6.3",
"karma": "^6.4.1",
"karma-babel-preprocessor": "^8.0.2",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-async": "^0.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsx": "^3.8.2",
"typescript": "4.9.3"
}
}