mirror of
https://github.com/HeyPuter/puter
synced 2024-11-15 06:15:47 +00:00
d6dd1a5bb0
These allow the user to force color on or off. The chalk library is used for the output, because it's already used elsewhere in Puter and seems like a good choice. Ideally, the default will be based on whether stdout is a tty, but Puter doesn't yet have that concept, so we just default to color.
28 lines
674 B
JSON
28 lines
674 B
JSON
{
|
|
"name": "git",
|
|
"version": "1.0.0",
|
|
"description": "Git Client for Puter",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"author": "Puter Technologies Inc.",
|
|
"license": "AGPL-3.0-only",
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^24.1.0",
|
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
"@rollup/plugin-replace": "^5.0.2",
|
|
"mocha": "^10.2.0",
|
|
"rollup": "^3.21.4",
|
|
"rollup-plugin-copy": "^3.4.0"
|
|
},
|
|
"dependencies": {
|
|
"@pkgjs/parseargs": "^0.11.0",
|
|
"buffer": "^6.0.3",
|
|
"chalk": "^5.3.0",
|
|
"diff": "^5.2.0",
|
|
"isomorphic-git": "^1.25.10"
|
|
}
|
|
}
|