-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "@ickb/v1-core",
"version": "1.4.2",
"description": "iCKB scripts and utilities for interacting with them",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"scripts": {
"build": "pnpm run build:esm && pnpm run build:cjs && node dist/cjs/src/index.js",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs"
},
"files": [
"/dist",
"/src"
],
"keywords": [],
"author": "phroi",
"license": "MIT",
"dependencies": {
"@ckb-lumos/base": "^0.23.0",
"@ckb-lumos/ckb-indexer": "^0.23.0",
"@ckb-lumos/codec": "^0.23.0",
"@ckb-lumos/common-scripts": "^0.23.0",
"@ckb-lumos/config-manager": "^0.23.0",
"@ckb-lumos/helpers": "^0.23.0",
"@ckb-lumos/rpc": "^0.23.0",
"@ickb/lumos-utils": "1.4.2"
},
"devDependencies": {
"typescript": "next",
"eslint": "^9.12.0",
"@typescript-eslint/eslint-plugin": "canary",
"@typescript-eslint/parser": "canary",
"prettier": "^3.3.3"
},
"packageManager": "pnpm@9.12.2+sha256.2ef6e547b0b07d841d605240dce4d635677831148cd30f6d564b8f4f928f73d2"
}