-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "@safeheron/api-sdk",
"version": "1.0.15",
"description": "Javascript & Typescript SDK for Safeheron API",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc",
"test": "jest",
"lint": "tslint -c tslint.json -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/Safeheron/safeheron-api-sdk-js.git"
},
"keywords": [
"safeheron",
"api",
"sdk",
"js"
],
"author": "xigaoku<[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Safeheron/safeheron-api-sdk-js",
"dependencies": {
"axios": "^1.6.8",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/node": "^18.7.6",
"@types/rc": "^1.2.1",
"@types/uuid": "^8.3.4",
"ethers": "^5.7.0",
"prettier": "^2.7.1",
"rc": "^1.2.8",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"files": [
"lib/**/*"
]
}