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.

43 lines
1.0 KiB
JSON

2 years ago
{
"name": "git-remote-git3",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
2 years ago
"bin": "dist/index.js",
"pkg": {
"targets": [
"node18-macos-arm64",
"node18-macos-x64",
"node18-linux-x64",
"node18-win-x64"
],
"outputPath": "bin"
},
2 years ago
"license": "MIT",
"dependencies": {
"buffer-split": "^1.0.0",
2 years ago
"debug": "^4.3.4",
"rxjs": "^6.6.3",
"rxjs-async-map": "^0.2.0",
"rxjs-stream": "^3.2.1",
"superpathjoin": "^2.0.1"
2 years ago
},
"scripts": {
"build": "yarn run clean && tsc",
2 years ago
"install-mac": "yarn pkg && cp ./bin/git-remote-git3-macos-x64 /usr/local/bin/git-remote-git3",
"install-mac-arm": "yarn pkg && cp ./bin/git-remote-git3-macos-arm64 /usr/local/bin/git-remote-git3",
"pkg": "yarn run build && pkg .",
2 years ago
"clean": "rm -rf ./dist ./bin"
},
"devDependencies": {
"@types/buffer-split": "^1.0.0",
2 years ago
"@types/debug": "^4.1.7",
"@types/node": "^18.11.10",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}