-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "@nervina-labs/cota-sdk",
"version": "0.9.2",
"description": "The SDK of CoTA",
"repository": "[email protected]:nervina-labs/cota-sdk-js.git",
"author": "duanyytop <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nervina-labs/cota-sdk-js/issues"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"check": "prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"@nervosnetwork/ckb-sdk-core": "^0.103.1",
"@nervosnetwork/ckb-sdk-utils": "^0.103.1",
"@nervosnetwork/ckb-types": "^0.103.1",
"axios": "^1.2.1",
"camelcase-keys": "7.0.2",
"convert-keys": "1.3.4"
},
"devDependencies": {
"@types/crypto-js": "4.2.1",
"@types/node": "18.19.2",
"@typescript-eslint/parser": "5.62.0",
"@babel/eslint-parser": "7.23.3",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"prettier": "2.8.8",
"ts-node": "10.9.1",
"tslib": "2.6.2",
"typescript": "5.3.3"
},
"homepage": "https://github.com/nervina-labs/cota-sdk-js#readme"
}