-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
{
"name": "@ickb/bot",
"version": "1.4.3",
"description": "A bot that fulfills iCKB limit orders",
"author": "phroi",
"license": "MIT",
"private": false,
"homepage": "https://github.com/ickb/bot",
"repository": {
"type": "git",
"url": "git://github.com/ickb/bot.git"
},
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint ./src",
"start": "node --env-file=env/${CHAIN}/.env dist/esm/index.js | tee log_${CHAIN}_$(date +%F_%H-%M-%S).json",
"forcestart": "while true; do pnpm start; sleep 10; done",
"up2lint": "rm pnpm-lock.yaml && pnpm up && pnpm build && pnpm lint",
"refresh": "git pull origin master && pnpm install --frozen-lockfile && pnpm build"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/node": "^22.18.0",
"eslint": "^9.34.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
},
"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/hd": "^0.23.0",
"@ckb-lumos/helpers": "^0.23.0",
"@ickb/lumos-utils": "1.4.2",
"@ickb/v1-core": "1.4.2"
}
}