This repository has been archived by the owner on Apr 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.65 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
{
"name": "sudt-cli",
"version": "0.5.24",
"description": "sudt-cli is a command line tool to create SUDT tokens on the Nervos Mainnet, Testnet, and on private Devnets.",
"main": "bin/sudt-cli.js",
"bin": {
"sudt-cli": "./bin/sudt-cli.js"
},
"scripts": {
"postinstall": "npm run compile",
"start": "ts-node --files src/index.ts",
"clean": "rimraf build && rimraf dist && rimraf devnet-config.json",
"compile": "tsc",
"package": "nexe -t v14.15.3 -o dist/sudt-cli -r ./node_modules/ build/index.js",
"package-linux": "nexe -t linux-x64-14.15.3 -o dist/sudt-cli-$npm_package_version-linux-x64/sudt-cli -r ./node_modules/ build/index.js",
"package-macos": "nexe -t mac-x64-14.15.3 -o dist/sudt-cli-$npm_package_version-macos-x64/sudt-cli -r ./node_modules/ build/index.js",
"package-windows": "nexe -t windows-x64-14.15.3 -o dist/sudt-cli-$npm_package_version-windows-x64/sudt-cli.exe -r ./node_modules/ build/index.js",
"build": "npm run clean && npm run compile && npm run package",
"build-all": "npm run clean && npm run compile && npm run package-linux && npm run package-macos && npm run package-windows",
"bump": "npm --no-git-tag-version version patch",
"zip-linux": "cd dist && tar cjf ./sudt-cli-$npm_package_version-linux-x64.tar.bz2 ./sudt-cli-$npm_package_version-linux-x64/*",
"zip-macos": "cd dist && zip -9 ./sudt-cli-$npm_package_version-macos-x64.zip ./sudt-cli-$npm_package_version-macos-x64/*",
"zip-windows": "cd dist && zip -9 ./sudt-cli-$npm_package_version-windows-x64.zip ./sudt-cli-$npm_package_version-windows-x64/*",
"zip-all": "npm run zip-linux && npm run zip-macos && npm run zip-windows",
"prepare-all": "npm run clean && npm run build-all && npm run zip-all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jordanmack/sudt-cli.git"
},
"author": "Jordan Mack <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jordanmack/sudt-cli/issues"
},
"homepage": "https://github.com/jordanmack/sudt-cli#readme",
"dependencies": {
"@lay2/pw-core": "0.4.0-alpha.12",
"@nervosnetwork/ckb-sdk-utils": "^0.43.0",
"@types/lodash": "^4.14.171",
"@types/mkdirp": "^1.0.2",
"@types/node": "^16.4.10",
"@types/node-fetch": "^2.5.12",
"@types/yargs": "^17.0.2",
"blake2b": "^2.1.3",
"ckb-js-toolkit": "^0.10.2",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"molecule-javascript": "^0.1.8",
"node-fetch": "^2.6.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"yargs": "^17.0.1"
},
"devDependencies": {
"nexe": "^4.0.0-beta.18",
"nodemon": "^2.0.12",
"rimraf": "^3.0.2"
}
}