-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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
{
"name": "adena-module",
"private": true,
"version": "1.13.0",
"description": "Adena's Wallet",
"main": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint 'src/**/*.{js,ts}'",
"dev": "rollup -w -c --environment FORMAT:esm",
"build:default": "rollup -c",
"build": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.23.9",
"@babel/preset-flow": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@noble/hashes": "^1.3.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/bn.js": "^5.1.5",
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.12",
"@types/libsodium-wrappers": "^0.7.13",
"@types/libsodium-wrappers-sumo": "^0.7.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"elliptic": "^6.5.4",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"libsodium-wrappers": "^0.7.13",
"libsodium-wrappers-sumo": "^0.7.13",
"lodash.merge": "^4.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@cosmjs/ledger-amino": "^0.32.4",
"@gnolang/gno-js-client": "1.3.0",
"@gnolang/tm2-js-client": "1.2.1",
"@ledgerhq/hw-transport": "^6.30.4",
"@ledgerhq/hw-transport-mocker": "^6.28.4",
"@ledgerhq/hw-transport-webhid": "^6.28.4",
"@ledgerhq/hw-transport-webusb": "^6.28.4",
"bech32": "2.0.0",
"bn.js": "5.2.1",
"crypto-js": "4.2.0",
"dotenv": "16.4.5",
"ledger-cosmos-js": "^2.1.8",
"readonly-date": "1.0.0",
"rollup-plugin-dotenv": "^0.5.0"
}
}