-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
87 lines (87 loc) · 2.25 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
{
"name": "@initia/initia.js",
"version": "0.2.20",
"description": "The JavaScript SDK for Initia",
"license": "Apache-2.0",
"author": "Initia Foundation",
"repository": {
"type": "git",
"url": "https://github.com/initia-labs/initia.js"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "vite build",
"test": "jest --passWithNoTests",
"lint": "npx eslint . --fix",
"prepare": "husky",
"prepublishOnly": "rm -rf ./dist && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/eslint": "^8.56.10",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.0.3",
"@types/node": "^22.7.7",
"@types/ripemd160": "^2.0.0",
"@types/secp256k1": "^4.0.6",
"@types/semver": "^7.5.8",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"crypto-browserify": "^3.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.1.1",
"lint-staged": "^13.3.0",
"prettier": "^3.1.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.1",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3"
},
"dependencies": {
"@initia/initia.proto": "^0.2.3",
"@initia/opinit.proto": "^0.0.10",
"@ledgerhq/hw-transport": "^6.27.12",
"@ledgerhq/hw-transport-webhid": "^6.27.12",
"@ledgerhq/hw-transport-webusb": "^6.27.12",
"@mysten/bcs": "^1.0.2",
"axios": "^1.7.4",
"bech32": "^2.0.0",
"bignumber.js": "^9.1.0",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"jscrypto": "^1.0.3",
"keccak256": "^1.0.6",
"long": "^5.2.0",
"ripemd160": "^2.0.2",
"secp256k1": "^5.0.0",
"semver": "^7.6.3",
"ws": "^7.5.10"
},
"lint-staged": {
"src/**/*.{mjs|ts}": [
"npx eslint . --fix"
]
}
}