-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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": "@ckb-lumos/base",
"version": "0.24.0-next.2",
"description": "Base data structures and utilities used in lumos",
"author": "Xuejie Xiao <[email protected]>",
"homepage": "https://github.com/ckb-js/lumos#readme",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"files": [
"lib",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ckb-js/lumos.git"
},
"scripts": {
"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",
"fmt": "prettier --write \"{src,tests,examples}/**/*.ts\" package.json",
"lint": "eslint -c ../../.eslintrc.js \"{src,tests,examples}/**/*.ts\"",
"clean": "shx rm -rf lib",
"test": "ava **/*.test.{js,ts} --timeout=2m"
},
"bugs": {
"url": "https://github.com/ckb-js/lumos/issues"
},
"ava": {
"extensions": [
"ts",
"js"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"@ckb-lumos/bi": "0.24.0-next.2",
"@ckb-lumos/codec": "0.24.0-next.2",
"@ckb-lumos/toolkit": "0.24.0-next.2",
"@types/blake2b": "^2.1.0",
"@types/lodash.isequal": "^4.5.5",
"blake2b": "^2.1.3",
"js-xxhash": "^1.0.4"
},
"devDependencies": {
"jsbi": "^4.1.0",
"lodash.isequal": "^4.5.0"
},
"publishConfig": {
"access": "public"
}
}