-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 2.7 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
{
"name": "@lace/cardano",
"version": "0.1.0",
"description": "A Cardano blockchain package",
"homepage": "https://github.com/input-output-hk/lace/blob/master/packages/cardano/README.md",
"bugs": {
"url": "https://github.com/input-output-hk/lace/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/lace.git"
},
"license": "Apache-2.0",
"author": "IOHK",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist",
"LICENSE",
"NOTICE",
"README.md"
],
"scripts": {
"build": "run -T rollup -c rollup.config.js",
"cleanup": "yarn exec rm -rf dist node_modules",
"format-check": "echo \"@lace/cardano: no format-check command specified\"",
"lint": "cd ../.. && yarn cardano:lint",
"prepack": "yarn build",
"prepare": "ts-patch install -s",
"prestart": "yarn build",
"start": "node dist/index.js",
"test": "NODE_ENV=test run -T jest -c ./test/jest.config.js --silent",
"tsc:declarationOnly": "tsc --project ./src/tsconfig.declarationOnly.json",
"type-check": "echo \"@lace/cardano: no type-check command specified\"",
"watch": "yarn build --watch"
},
"dependencies": {
"@cardano-sdk/cardano-services-client": "0.26.2",
"@cardano-sdk/core": "0.45.1",
"@cardano-sdk/crypto": "0.2.1",
"@cardano-sdk/hardware-ledger": "0.15.2",
"@cardano-sdk/hardware-trezor": "0.7.1",
"@cardano-sdk/key-management": "0.27.1",
"@cardano-sdk/tx-construction": "0.26.1",
"@cardano-sdk/util": "0.15.6",
"@cardano-sdk/wallet": "0.51.9",
"@cardano-sdk/web-extension": "0.38.9",
"@lace/common": "0.1.0",
"@ledgerhq/devices": "^8.4.4",
"@stablelib/chacha20poly1305": "1.0.1",
"@trezor/transport": "^1.1.18",
"bignumber.js": "9.0.1",
"buffer": "6.0.3",
"classnames": "2.3.1",
"dayjs": "1.10.7",
"graphql": "^15.6.1",
"graphql-request": "3.5.0",
"lodash": "4.17.21",
"pbkdf2": "3.1.2",
"pify": "5.0.0",
"qr-code-styling": "^1.6.0-rc.1",
"randombytes": "2.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rxjs": "7.4.0",
"ts-custom-error": "^3.3.1",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@blockfrost/blockfrost-js": "^5.5.0",
"@cardano-sdk/util-dev": "0.25.4",
"@emurgo/cardano-message-signing-browser": "1.0.1",
"@types/webextension-polyfill": "0.10.0",
"axios": "^1.7.4",
"rollup-plugin-polyfill-node": "^0.8.0",
"ts-log": "^2.2.7",
"type-fest": "^4.26.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
}
}