-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
93 lines (93 loc) · 3.22 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
{
"name": "@cardano-sdk/wallet",
"version": "0.44.22",
"description": "Wallet modules",
"engines": {
"node": ">=16.20.2"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": "https://github.com/input-output-hk/cardano-js-sdk",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"license": "Apache-2.0",
"scripts": {
"build": "yarn build:cjs && tsc -p src/tsconfig.json --outDir ./dist/esm --module es2020 && tsc-alias -p src/tsconfig.json --outDir ./dist/esm && cp ../../build/esm-package.json ./dist/esm/package.json",
"build:cjs": "tsc --build src && cp ../../build/cjs-package.json ./dist/cjs/package.json",
"circular-deps:check": "madge --circular dist/cjs",
"tscNoEmit": "echo typescript --noEmit command not implemented yet",
"cleanup:dist": "rm -rf dist",
"cleanup:nm": "rm -rf node_modules",
"cleanup": "rm -rf dist node_modules",
"coverage": "yarn test --coverage || true",
"lint": "eslint -c ../../complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"prepack": "yarn build",
"test": "jest -c ./jest.config.js",
"test:build:verify": "tsc --build ./test",
"test:hw:ledger": "jest ./test/hardware/ledger/* -c ./hw.jest.config.js --runInBand",
"test:hw:trezor": "jest ./test/hardware/trezor/* -c ./hw.jest.config.js --runInBand",
"test:debug": "DEBUG=true yarn test",
"test:e2e": "echo 'test:e2e' command not implemented yet"
},
"devDependencies": {
"@cardano-foundation/ledgerjs-hw-app-cardano": "^7.1.4",
"@cardano-ogmios/client": "6.9.0",
"@cardano-sdk/cardano-services-client": "workspace:~",
"@cardano-sdk/ogmios": "workspace:~",
"@cardano-sdk/util-dev": "workspace:~",
"@emurgo/cardano-message-signing-nodejs": "^1.0.1",
"@ledgerhq/hw-transport-node-hid-noevents": "^6.30.5",
"@types/node-hid": "^1.3.1",
"@types/pouchdb": "^6.4.0",
"bunyan": "^1.8.15",
"envalid": "^7.3.1",
"eslint": "^7.32.0",
"jest": "^28.1.3",
"jest-webextension-mock": "^3.7.19",
"madge": "^5.0.1",
"mock-browser": "^0.92.14",
"npm-run-all": "^4.1.5",
"ts-jest": "^28.0.7",
"tsc-alias": "^1.8.10",
"typescript": "^4.7.4",
"wait-on": "^6.0.1",
"webextension-polyfill": "^0.9.0"
},
"dependencies": {
"@cardano-sdk/core": "workspace:~",
"@cardano-sdk/crypto": "workspace:~",
"@cardano-sdk/dapp-connector": "workspace:~",
"@cardano-sdk/hardware-ledger": "workspace:~",
"@cardano-sdk/hardware-trezor": "workspace:~",
"@cardano-sdk/input-selection": "workspace:~",
"@cardano-sdk/key-management": "workspace:~",
"@cardano-sdk/tx-construction": "workspace:~",
"@cardano-sdk/util": "workspace:~",
"@cardano-sdk/util-rxjs": "workspace:~",
"backoff-rxjs": "^7.0.0",
"bignumber.js": "^9.1.1",
"delay": "^5.0.0",
"emittery": "^0.10.0",
"lodash": "^4.17.21",
"pouchdb": "^7.3.0",
"rxjs": "^7.4.0",
"ts-custom-error": "^3.2.0",
"ts-log": "^2.2.3",
"uuid": "^8.3.2"
},
"files": [
"dist/*",
"!dist/tsconfig.tsbuildinfo",
"LICENSE",
"NOTICE"
]
}