-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 KB
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
{
"name": "@initia/initia.js",
"version": "1.1.0",
"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.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "vite build",
"test": "vitest run",
"lint": "npx eslint . --fix",
"prepare": "husky",
"prepublishOnly": "rm -rf ./dist && npm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@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",
"eslint": "^10.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.4.3",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.54.0",
"vite": "^6.2.4",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.0.9"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@initia/initia.proto": "^1.0.5",
"@initia/opinit.proto": "^1.0.3",
"@mysten/bcs": "^1.1.0",
"axios": "1.14.0",
"bech32": "^2.0.0",
"bignumber.js": "^9.1.2",
"bip32": "^5.0.0-rc.0",
"bip39": "^3.1.0",
"events": "^3.3.0",
"jscrypto": "^1.0.3",
"keccak256": "^1.0.6",
"ripemd160": "^2.0.2",
"secp256k1": "^5.0.1",
"semver": "^7.6.3",
"ws": "^8.18.0"
},
"overrides": {
"minimatch": "^10.2.1"
},
"lint-staged": {
"src/**/*.{mjs|ts}": [
"npx eslint . --fix"
]
}
}