-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.71 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@alleslabs/legacy-bcs",
"version": "0.0.3",
"description": "The Legacy BCS for Initia",
"license": "MIT",
"author": "Initia Foundation",
"keywords": [
"cryptocurrency",
"blockchain",
"smart-contracts",
"altcoin",
"altcoins",
"wallet",
"move"
],
"repository": {
"type": "git",
"url": "https://github.com/alleslabs/legacy-bcs"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc --module commonjs && webpack --mode production",
"create-hook": "husky add .husky/pre-commit",
"test": "jest",
"format": "prettier --check \"./src/**/*.ts\"",
"format:fix": "prettier --write \"./src/**/*.ts\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --ext .js,.ts --fix",
"doc": "typedoc",
"prepare": "husky install",
"prepublishOnly": "rm -rf ./dist && npm run build"
},
"lint-staged": {
"./src/**/*.ts": [
"npm run lint:fix",
"npm run format:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "npm i"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"devDependencies": {
"@initia/builder.js": "^0.1.6",
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/ripemd160": "^2.0.0",
"@types/secp256k1": "^4.0.6",
"@types/tmp": "^0.2.3",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.23.1",
"husky": "^6.0.0",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.0.1",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typedoc": "^0.25.2",
"typescript": "^5.1.6",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@initia/initia.proto": "^0.2.1",
"@initia/opinit.proto": "^0.0.8",
"@ledgerhq/hw-transport": "^6.27.12",
"@ledgerhq/hw-transport-webhid": "^6.27.12",
"@ledgerhq/hw-transport-webusb": "^6.27.12",
"@mysten/bcs": "^0.10.1",
"axios": "^1.6.5",
"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",
"tmp": "^0.2.1",
"ws": "^7.5.9"
}
}