-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@offckb/cli",
"version": "0.3.0",
"description": "ckb development network for your first try",
"author": "CKB EcoFund",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ckb-devrel/offckb.git"
},
"main": "dist/cli.js",
"bin": {
"offckb": "dist/cli.js"
},
"files": [
"dist",
"account",
"ckb",
"templates/v3/offckb.config.example.ts"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "ts-node-dev --transpile-only src/cli.ts",
"clean": "rm -rf ./target",
"lint": "eslint \"src/**/*.ts\" \"templates/*.ts\" --ignore-pattern 'node_modules/'",
"lint:fix": "eslint \"src/**/*.ts\" \"templates/*.ts\" --ignore-pattern 'node_modules/' --fix",
"fmt": "prettier --write '{src,templates,account}/**/*.{js,jsx,ts,tsx,md,json}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,templates,account}/**/*.{js,jsx,ts,tsx,md,json}": "prettier --ignore-unknown --write"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/cpu-features": "^0.0.3",
"@types/node": "^20.11.19",
"@types/node-fetch": "^2.6.11",
"@types/semver": "^7.5.7",
"@types/tar": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@ckb-ccc/core": "^0.0.16-alpha.3",
"@iarna/toml": "^2.2.5",
"@inquirer/prompts": "^4.1.0",
"@types/http-proxy": "^1.17.15",
"adm-zip": "^0.5.10",
"child_process": "^1.0.2",
"ckb-transaction-dumper": "^0.4.0",
"commander": "^12.0.0",
"cpu-features": "^0.0.10",
"http-proxy": "^1.18.1",
"https-proxy-agent": "^7.0.5",
"node-fetch": "2",
"semver": "^7.6.0",
"tar": "^6.2.1"
}
}