-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.35 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
{
"name": "ckb-transaction-dumper",
"version": "0.4.2",
"description": "CKB Transaction Dumper, used together with ckb-standalone-debugger",
"bin": {
"ckb-transaction-dumper": "./cli-dist.js"
},
"files": [
"cli-dist.js"
],
"scripts": {
"build": "rollup -c",
"fmt": "prettier --write \"*.js\"",
"prepare": "npm run build",
"update-extension-file": "curl -LO https://raw.githubusercontent.com/nervosnetwork/ckb/27c36a55e6358fd04153ec3da4638b6e10660da6/util/types/schemas/extensions.mol && curl -LO https://raw.githubusercontent.com/nervosnetwork/ckb/27c36a55e6358fd04153ec3da4638b6e10660da6/util/types/schemas/blockchain.mol && moleculec --language - --schema-file extensions.mol --format json > extensions.json && moleculec-es -inputFile extensions.json -outputFile extensions.esm.js && rm blockchain.mol extensions.mol extensions.json"
},
"author": "Xuejie Xiao",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"builtin-modules": "^3.3.0",
"ckb-js-toolkit": "^0.11.1",
"commander": "^11.1.0",
"node-fetch": "^3.3.2",
"pkg": "^5.8.1",
"prettier": "^3.1.1",
"proxy-agent": "^6.3.1",
"rollup": "^2.79.1",
"rollup-plugin-executable": "^1.6.3"
}
}