-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.07 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
{
"name": "@solocker/safe-bn",
"version": "0.0.11",
"repository": {
"type": "git",
"url": "https://github.com/solocker-app/solocker-safe-bn.js"
},
"publishConfig": {
"access": "public"
},
"description": "BigNumber support for decimals.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./src/index.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"test": "jest",
"build": "tsc"
},
"author": "Oguntunde Caleb Fiyinfoluwa <payouk.msytre@gmail.com>",
"license": "ISC",
"dependencies": {
"@tsconfig/recommended": "^1.0.7",
"@types/bn.js": "^5.1.5",
"bn.js": "^5.2.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"keywords": [
"bn.js",
"solocker",
"solana",
"bignumber",
"decimals",
"safe-bn",
"large",
"float"
],
"files": [
"dist/**"
]
}