Initial commit

This commit is contained in:
Marcelo
2025-11-20 15:27:34 -06:00
commit cc72c9fc5d
3221 changed files with 737477 additions and 0 deletions

41
node_modules/get-stdin/package.json generated vendored Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "get-stdin",
"version": "5.0.1",
"description": "Get stdin as a string or buffer",
"license": "MIT",
"repository": "sindresorhus/get-stdin",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "xo && ava test.js && echo unicorns | ava test-real.js"
},
"files": [
"index.js"
],
"keywords": [
"std",
"stdin",
"stdio",
"concat",
"buffer",
"stream",
"process",
"read"
],
"devDependencies": {
"ava": "*",
"buffer-equals": "^1.0.3",
"xo": "*"
},
"xo": {
"ignores": [
"test.js"
]
}
}