mirror of git3://git3.w3q/git3-cli
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"name": "git3-cli",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"bin": "dist/index.js",
|
|
"pkg": {
|
|
"targets": [
|
|
"node18-macos-arm64",
|
|
"node18-macos-x64",
|
|
"node18-linux-x64",
|
|
"node18-win-x64"
|
|
],
|
|
"outputPath": "bin"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@ethersproject/experimental": "^5.7.0",
|
|
"bip39": "^3.0.4",
|
|
"buffer-split": "^1.0.0",
|
|
"colors-cli": "^1.0.28",
|
|
"commander": "^9.4.1",
|
|
"debug": "^4.3.4",
|
|
"eth-ens-namehash": "^2.0.8",
|
|
"ethers": "^5.7.2",
|
|
"git-config-path": "^2.0.0",
|
|
"inquirer": "^9.1.4",
|
|
"js-sha3": "^0.8.0",
|
|
"parse-git-config": "^3.0.0",
|
|
"rxjs": "^7.6.0",
|
|
"rxjs-async-map": "^0.2.0",
|
|
"rxjs-stream": "^3.2.1",
|
|
"superpathjoin": "^2.0.1"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn clean && tsc",
|
|
"install-mac": "yarn pkg && cp ./bin/index-macos-x64 /usr/local/bin/git-remote-git3",
|
|
"install-mac-arm": "yarn pkg && cp ./bin/index-macos-arm64 /usr/local/bin/git-remote-git3",
|
|
"pkg": "yarn build && pkg ./dist/index.js --out-path bin/ --targets node18-macos-x64,node18-macos-arm64,node18-linux-x64,node18-win-x64",
|
|
"build:git3": "esbuild ./src/git3/index.js --bundle --platform=node --target=es6 --outfile=dist/git3.js",
|
|
"pkg:git3": "yarn build:git3 && pkg dist/git3.js --output bin/git3 && cp bin/git3 /usr/local/bin/git3",
|
|
"clean": "rm -rf ./dist ./bin"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.16.4",
|
|
"@types/buffer-split": "^1.0.0",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/node": "^18.11.10",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.3"
|
|
}
|
|
} |