-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.59 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.59 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@offckb/cli",
"version": "0.4.4",
"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": "build/index.js",
"bin": {
"offckb": "build/index.js"
},
"files": [
"build",
"account",
"ckb",
"templates/v4"
],
"private": false,
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"pnpm": {
"onlyBuiltDependencies": [
"secp256k1"
]
},
"scripts": {
"build": "node scripts/build.js",
"start": "ts-node-dev --transpile-only src/cli.ts",
"clean": "node scripts/clean.js",
"lint": "eslint \"src/**/*.ts\" --ignore-pattern 'node_modules/'",
"lint:fix": "eslint \"src/**/*.ts\" --ignore-pattern 'node_modules/' --fix",
"fmt": "prettier --write '{src,templates,account}/**/*.{js,jsx,ts,tsx,md,json}'",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --ci",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"{templates,account}/**/*.{js,jsx,ts,tsx,md,json}": [
"prettier --ignore-unknown --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/adm-zip": "^0.5.5",
"@types/blessed": "0.1.27",
"@types/jest": "^30.0.0",
"@types/node": "^20.17.24",
"@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",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.26.0",
"husky": "^9.0.11",
"jest": "^30.2.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@ckb-ccc/core": "1.5.3",
"@iarna/toml": "^2.2.5",
"@inquirer/prompts": "^7.8.6",
"@types/http-proxy": "^1.17.15",
"adm-zip": "^0.5.10",
"blessed": "0.1.81",
"chalk": "4.1.2",
"child_process": "^1.0.2",
"ckb-transaction-dumper": "^0.4.2",
"commander": "^12.0.0",
"http-proxy": "^1.18.1",
"https-proxy-agent": "^7.0.5",
"node-fetch": "2",
"semver": "^7.6.0",
"tar": "^7.5.3",
"winston": "^3.17.0"
},
"optionalDependencies": {
"cpu-features": "^0.0.10"
}
}