-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "@ckb-lumos/rpc",
"version": "0.24.0-next.2",
"description": "RPC module for CKB",
"homepage": "https://github.com/ckb-js/lumos#readme",
"license": "MIT",
"main": "lib/index.js",
"engines": {
"node": ">=12.0.0"
},
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckb-js/lumos.git"
},
"bugs": {
"url": "https://github.com/ckb-js/lumos/issues"
},
"scripts": {
"doc": "npx typedoc --out docs --mode modules --includeDeclarations --excludeExternals --ignoreCompilerErrors --theme default",
"fmt": "prettier --write \"{src,tests,examples}/**/*.ts\" package.json",
"lint": "eslint -c ../../.eslintrc.js \"{src,tests,examples}/**/*.ts\"",
"test": "npx jest",
"build": "pnpm run build:types && pnpm run build:js",
"build:types": "tsc --declaration --emitDeclarationOnly",
"build:js": "babel --root-mode upward src --out-dir lib --extensions .ts -s",
"clean": "rm -rf lib"
},
"dependencies": {
"@ckb-lumos/base": "0.24.0-next.2",
"@ckb-lumos/bi": "0.24.0-next.2",
"abort-controller": "^3.0.0",
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/nock": "^11.1.0",
"express": "^4.18.1",
"jest": "^28.1.3",
"nock": "^13.2.9"
}
}