-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "@fioprotocol/fio-sdk-lite",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/fioprotocol/fio.sdk-lite.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"main": "./dist/index.js",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"docs": "typedoc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"./**/*.{ts,js,json,css,md}\"",
"test": "jest"
},
"dependencies": {
"bigi": "1.4.2",
"bip39": "3.1.0",
"browserify-aes": "1.2.0",
"bs58": "5.0.0",
"buffer": "6.0.3",
"create-hash": "1.2.0",
"create-hmac": "1.1.7",
"ecurve": "1.0.6",
"long": "5.2.3",
"randombytes": "2.1.0",
"text-encoding": "0.7.0"
},
"devDependencies": {
"@types/bigi": "1.4.5",
"@types/create-hash": "1.2.6",
"@types/create-hmac": "1.1.3",
"@types/ecurve": "1.0.3",
"@types/jest": "29.5.13",
"@types/randombytes": "2.0.3",
"@types/text-encoding": "0.0.39",
"@typescript-eslint/eslint-plugin": "8.8.1",
"@typescript-eslint/parser": "8.8.1",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.1.0",
"ts-node": "10.9.2",
"typedoc": "0.26.8",
"typescript": "5.6.3"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}