text
stringlengths
55
456k
metadata
dict
# FP Guide **date-fns** v2.x provides [functional programming](https://en.wikipedia.org/wiki/Functional_programming) (FP) friendly functions, like those in [lodash](https://github.com/lodash/lodash/wiki/FP-Guide), that support [currying](https://en.wikipedia.org/wiki/Currying). ## Table of Contents - [Usage](#usage)...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/date-fns/docs/fp.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/date-fns/docs/fp.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clone built with Gemini 2.0 ...
# Getting Started ## Table of Contents - [Introduction](#introduction) - [Submodules](#submodules) - [Installation](#installation) ## Introduction **date-fns** provides the most comprehensive, yet simple and consistent toolset for manipulating **JavaScript dates** in **a browser** & **Node.js**. **date-fns** is ...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/date-fns/docs/gettingStarted.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/date-fns/docs/gettingStarted.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clon...
# Internationalization ## Table of Contents - [Usage](#usage) - [Adding New Language](#adding-new-language) ## Usage There are just a few functions that support I18n: - [`format`](https://date-fns.org/docs/format) - [`formatDistance`](https://date-fns.org/docs/formatDistance) - [`formatDistanceStrict`](https://da...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/date-fns/docs/i18n.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/date-fns/docs/i18n.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clone built with Gemini ...
# I18n Contribution Guide ## Table of Contents - [Adding a new locale](#adding-a-new-locale) - [Choosing a directory name for a locale](#choosing-a-directory-name-for-a-locale) - [index.js](#index.js) - [localize](#localize) - [localize.ordinalNumber](#localize.ordinalnumber) - [localize.era and us...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/date-fns/docs/i18nContributionGuide.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/date-fns/docs/i18nContributionGuide.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Sear...
# Releasing date-fns 1. First, make sure that the library is built by running `./scripts/build/build.sh` and committing and pushing any change you would have. 2. Then add the changelog entry generated by `npx tsx scripts/release/buildChangelog.ts` to (CHANGELOG.md)[../CHANGELOG.md]. Make sure that the output is valid...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/date-fns/docs/release.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/date-fns/docs/release.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clone built with G...
# Time Zones ## Table of Contents - [Overview](#overview) - [`date-fns-tz`](#date-fns-tz) ## Overview Working with UTC or ISO date strings is easy, and so is working with JS dates when all times are displayed in a user's local time in the browser. The difficulty comes when working with another time zone's local ti...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/date-fns/docs/timeZones.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/date-fns/docs/timeZones.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clone built wi...
# Unicode Tokens Starting with v2, `format` and `parse` use [Unicode tokens]. The tokens are different from Moment.js and other libraries that opted to use custom formatting rules. While usage of a standard ensures compatibility and the future of the library, it causes confusion that this document intends to resolve....
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/date-fns/docs/unicodeTokens.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/date-fns/docs/unicodeTokens.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clone ...
# webpack ## Removing unused languages from dynamic import If a locale is imported dynamically, then all locales from date-fns are loaded by webpack into a bundle (~160kb) or split across the chunks. This prolongs the build process and increases the amount of space taken. However, it is possible to use webpack to tri...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/date-fns/docs/webpack.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/date-fns/docs/webpack.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clone built with G...
# Explicit property check Sometimes it is necessary to squeeze every once of performance out of your runtime code, and deep equality checks can be a bottleneck. When this is occurs, it can be advantageous to build a custom comparison that allows for highly specific equality checks. An example where you know the shape...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/fast-equals/recipes/explicit-property-check.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/fast-equals/recipes/explicit-property-check.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexi...
# Legacy environment support for circular equal comparators Starting in `4.x.x`, `WeakMap` is expected to be available in the environment. All modern browsers support this global object, however there may be situations where a legacy environmental support is required (example: IE11). If you need to support such an env...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/fast-equals/recipes/legacy-circular-equal-support.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/fast-equals/recipes/legacy-circular-equal-support.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description...
# Legacy environment support for `RegExp` comparators Starting in `4.x.x`, `RegExp.prototype.flags` is expected to be available in the environment. All modern browsers support this feature, however there may be situations where a legacy environmental support is required (example: IE11). If you need to support such an ...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/fast-equals/recipes/legacy-regexp-support.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/fast-equals/recipes/legacy-regexp-support.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity s...
# Non-standard properties Sometimes, objects require a comparison that extend beyond its own keys, or even its own properties or symbols. Using a custom object comparator with `createCustomEqual` allows these kinds of comparisons. ```ts import { createCustomEqual } from 'fast-equals'; import type { TypeEqualityCompar...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/fast-equals/recipes/non-standard-properties.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/fast-equals/recipes/non-standard-properties.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexi...
# Using `meta` in comparison Sometimes a "pure" equality between two objects is insufficient, because the comparison relies on some external state. While these kinds of scenarios should generally be avoided, it is possible to handle them with a custom internal comparator that checks `meta` values. ```ts import { crea...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/fast-equals/recipes/using-meta-in-comparison.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/fast-equals/recipes/using-meta-in-comparison.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perple...
This directory is a fallback for `exports["./client"]` in the root `framer-motion` `package.json`.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/framer-motion/client/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/framer-motion/client/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clone ...
This directory is a fallback for `exports["./dom"]` in the root `framer-motion` `package.json`.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/framer-motion/dom/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/framer-motion/dom/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clone built ...
# Security Please email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/function-bind/.github/SECURITY.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/function-bind/.github/SECURITY.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine ...
# marked(1) -- a javascript markdown parser ## SYNOPSIS `marked` [`-o` <output file>] [`-i` <input file>] [`-s` <markdown string>] [`-c` <config file>] [`--help`] [`--version`] [`--tokens`] [`--no-clobber`] [`--pedantic`] [`--gfm`] [`--breaks`] [`--no-etc...`] [`--silent`] [filename] ## DESCRIPTION marked is a full...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/marked/man/marked.1.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/marked/man/marked.1.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine clone built with Gemin...
2.6.9 / 2017-09-22 ================== * remove ReDoS regexp in %o formatter (#504) 2.6.8 / 2017-05-18 ================== * Fix: Check for undefined on browser globals (#462, @marbemac) 2.6.7 / 2017-05-16 ================== * Fix: Update ms to 2.0.0 to fix regular expression denial of service vulnerability (#...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/body-parser/node_modules/debug/CHANGELOG.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/body-parser/node_modules/debug/CHANGELOG.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity sty...
# debug [![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) [![Slack](https://visionmedia-com...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/body-parser/node_modules/debug/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/body-parser/node_modules/debug/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI ...
The MIT License (MIT) Copyright (c) 2016 Zeit, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publi...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/body-parser/node_modules/ms/license.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/body-parser/node_modules/ms/license.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Sear...
# ms [![Build Status](https://travis-ci.org/zeit/ms.svg?branch=master)](https://travis-ci.org/zeit/ms) [![Slack Channel](http://zeit-slackin.now.sh/badge.svg)](https://zeit.chat/) Use this package to easily convert various time formats to milliseconds. ## Examples ```js ms('2 days') // 172800000 ms('1d') // 8...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/body-parser/node_modules/ms/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/body-parser/node_modules/ms/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search...
### [5.1.2](https://github.com/gulpjs/glob-parent/compare/v5.1.1...v5.1.2) (2021-03-06) ### Bug Fixes * eliminate ReDoS ([#36](https://github.com/gulpjs/glob-parent/issues/36)) ([f923116](https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366)) ### [5.1.1](https://github.com/gulpjs/gl...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/chokidar/node_modules/glob-parent/CHANGELOG.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/chokidar/node_modules/glob-parent/CHANGELOG.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexi...
<p align="center"> <a href="https://gulpjs.com"> <img height="257" width="114" src="https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png"> </a> </p> # glob-parent [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Azure Pipelines Build Status][azure-pipelines-image...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/chokidar/node_modules/glob-parent/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/chokidar/node_modules/glob-parent/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity sty...
# clsx [![CI](https://github.com/lukeed/clsx/workflows/CI/badge.svg)](https://github.com/lukeed/clsx/actions?query=workflow%3ACI) [![codecov](https://badgen.net/codecov/c/github/lukeed/clsx)](https://codecov.io/gh/lukeed/clsx) > A tiny (234B) utility for constructing `className` strings conditionally.<Br>Also serves a...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/class-variance-authority/node_modules/clsx/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/class-variance-authority/node_modules/clsx/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description...
MIT License Copyright (c) 2020 Evan Wallace Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, dist...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/drizzle-kit/node_modules/esbuild/LICENSE.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/drizzle-kit/node_modules/esbuild/LICENSE.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity sty...
# esbuild This is a JavaScript bundler and minifier. See https://github.com/evanw/esbuild and the [JavaScript API documentation](https://esbuild.github.io/api/) for details.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/drizzle-kit/node_modules/esbuild/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/drizzle-kit/node_modules/esbuild/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style...
1.0.7 / 2023-04-12 ================== * backport the buffer support from the 1.2.x release branch (thanks @FadhiliNjagi!) 1.0.6 / 2015-02-03 ================== * use `npm test` instead of `make test` to run tests * clearer assertion messages when checking input 1.0.5 / 2014-09-05 ================== * add license t...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express-session/node_modules/cookie-signature/History.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express-session/node_modules/cookie-signature/History.md", "date": "2025-01-04T14:07:19", "stars": 1910, "des...
# cookie-signature Sign and unsign cookies. ## Example ```js var cookie = require('cookie-signature'); var val = cookie.sign('hello', 'tobiiscool'); val.should.equal('hello.DGDUkGlIkCzPz+C0B064FNgHdEjox7ch8tOBGslZ5QI'); var val = cookie.sign('hello', 'tobiiscool'); cookie.unsign(val, 'tobiiscool').should.equal('...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express-session/node_modules/cookie-signature/Readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express-session/node_modules/cookie-signature/Readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "descr...
# cookie [![NPM Version][npm-version-image]][npm-url] [![NPM Downloads][npm-downloads-image]][npm-url] [![Node.js Version][node-image]][node-url] [![Build Status][ci-image]][ci-url] [![Coverage Status][coveralls-image]][coveralls-url] Basic HTTP cookie parser and serializer for HTTP servers. ## Installation This is...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express-session/node_modules/cookie/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express-session/node_modules/cookie/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity...
# Security Policies and Procedures ## Reporting a Bug The `cookie` team and community take all security bugs seriously. Thank you for improving the security of the project. We appreciate your efforts and responsible disclosure and will make every effort to acknowledge your contributions. Report security bugs by emai...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express-session/node_modules/cookie/SECURITY.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express-session/node_modules/cookie/SECURITY.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perple...
2.6.9 / 2017-09-22 ================== * remove ReDoS regexp in %o formatter (#504) 2.6.8 / 2017-05-18 ================== * Fix: Check for undefined on browser globals (#462, @marbemac) 2.6.7 / 2017-05-16 ================== * Fix: Update ms to 2.0.0 to fix regular expression denial of service vulnerability (#...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express-session/node_modules/debug/CHANGELOG.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express-session/node_modules/debug/CHANGELOG.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perple...
# debug [![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) [![Slack](https://visionmedia-com...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express-session/node_modules/debug/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express-session/node_modules/debug/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity s...
The MIT License (MIT) Copyright (c) 2016 Zeit, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publi...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express-session/node_modules/ms/license.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express-session/node_modules/ms/license.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style...
# ms [![Build Status](https://travis-ci.org/zeit/ms.svg?branch=master)](https://travis-ci.org/zeit/ms) [![Slack Channel](http://zeit-slackin.now.sh/badge.svg)](https://zeit.chat/) Use this package to easily convert various time formats to milliseconds. ## Examples ```js ms('2 days') // 172800000 ms('1d') // 8...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express-session/node_modules/ms/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express-session/node_modules/ms/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style A...
2.6.9 / 2017-09-22 ================== * remove ReDoS regexp in %o formatter (#504) 2.6.8 / 2017-05-18 ================== * Fix: Check for undefined on browser globals (#462, @marbemac) 2.6.7 / 2017-05-16 ================== * Fix: Update ms to 2.0.0 to fix regular expression denial of service vulnerability (#...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express/node_modules/debug/CHANGELOG.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express/node_modules/debug/CHANGELOG.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Se...
# debug [![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) [![Slack](https://visionmedia-com...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express/node_modules/debug/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express/node_modules/debug/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search e...
The MIT License (MIT) Copyright (c) 2016 Zeit, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publi...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express/node_modules/ms/license.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express/node_modules/ms/license.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engin...
# ms [![Build Status](https://travis-ci.org/zeit/ms.svg?branch=master)](https://travis-ci.org/zeit/ms) [![Slack Channel](http://zeit-slackin.now.sh/badge.svg)](https://zeit.chat/) Use this package to easily convert various time formats to milliseconds. ## Examples ```js ms('2 days') // 172800000 ms('1d') // 8...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/express/node_modules/ms/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/express/node_modules/ms/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine ...
### [5.1.2](https://github.com/gulpjs/glob-parent/compare/v5.1.1...v5.1.2) (2021-03-06) ### Bug Fixes * eliminate ReDoS ([#36](https://github.com/gulpjs/glob-parent/issues/36)) ([f923116](https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366)) ### [5.1.1](https://github.com/gulpjs/gl...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/fast-glob/node_modules/glob-parent/CHANGELOG.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/fast-glob/node_modules/glob-parent/CHANGELOG.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perple...
<p align="center"> <a href="https://gulpjs.com"> <img height="257" width="114" src="https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png"> </a> </p> # glob-parent [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Azure Pipelines Build Status][azure-pipelines-image...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/fast-glob/node_modules/glob-parent/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/fast-glob/node_modules/glob-parent/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity s...
2.6.9 / 2017-09-22 ================== * remove ReDoS regexp in %o formatter (#504) 2.6.8 / 2017-05-18 ================== * Fix: Check for undefined on browser globals (#462, @marbemac) 2.6.7 / 2017-05-16 ================== * Fix: Update ms to 2.0.0 to fix regular expression denial of service vulnerability (#...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/finalhandler/node_modules/debug/CHANGELOG.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/finalhandler/node_modules/debug/CHANGELOG.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity s...
# debug [![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) [![Slack](https://visionmedia-com...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/finalhandler/node_modules/debug/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/finalhandler/node_modules/debug/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style A...
The MIT License (MIT) Copyright (c) 2016 Zeit, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publi...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/finalhandler/node_modules/ms/license.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/finalhandler/node_modules/ms/license.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Se...
# ms [![Build Status](https://travis-ci.org/zeit/ms.svg?branch=master)](https://travis-ci.org/zeit/ms) [![Slack Channel](http://zeit-slackin.now.sh/badge.svg)](https://zeit.chat/) Use this package to easily convert various time formats to milliseconds. ## Examples ```js ms('2 days') // 172800000 ms('1d') // 8...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/finalhandler/node_modules/ms/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/finalhandler/node_modules/ms/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Sear...
# lru cache A cache object that deletes the least-recently-used items. [![Build Status](https://travis-ci.org/isaacs/node-lru-cache.svg?branch=master)](https://travis-ci.org/isaacs/node-lru-cache) [![Coverage Status](https://coveralls.io/repos/isaacs/node-lru-cache/badge.svg?service=github)](https://coveralls.io/gith...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/memorystore/node_modules/lru-cache/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/memorystore/node_modules/lru-cache/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity s...
# yallist Yet Another Linked List There are many doubly-linked list implementations like it, but this one is mine. For when an array would be too big, and a Map can't be iterated in reverse order. [![Build Status](https://travis-ci.org/isaacs/yallist.svg?branch=master)](https://travis-ci.org/isaacs/yallist) [![Cov...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/memorystore/node_modules/yallist/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/memorystore/node_modules/yallist/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style...
# lru-cache A cache object that deletes the least-recently-used items. Specify a max number of the most recently used items that you want to keep, and this cache will keep that many of the most recently accessed items. This is not primarily a TTL cache, and does not make strong TTL guarantees. There is no preemptive...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/path-scurry/node_modules/lru-cache/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/path-scurry/node_modules/lru-cache/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity s...
# pg-types This is the code that turns all the raw text from postgres into JavaScript types for [node-postgres](https://github.com/brianc/node-postgres.git) ## use This module is consumed and exported from the root `pg` object of node-postgres. To access it, do the following: ```js var types = require('pg').types ...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/pg/node_modules/pg-types/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/pg/node_modules/pg-types/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engin...
# postgres-array [![Build Status](https://travis-ci.org/bendrucker/postgres-array.svg?branch=master)](https://travis-ci.org/bendrucker/postgres-array) > Parse postgres array columns ## Install ``` $ npm install --save postgres-array ``` ## Usage ```js var postgresArray = require('postgres-array') postgresArray....
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/pg/node_modules/postgres-array/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/pg/node_modules/postgres-array/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI ...
# postgres-bytea [![Build Status](https://travis-ci.org/bendrucker/postgres-bytea.svg?branch=master)](https://travis-ci.org/bendrucker/postgres-bytea) > Postgres bytea parser ## Install ``` $ npm install --save postgres-bytea ``` ## Usage ```js var bytea = require('postgres-bytea'); bytea('\\000\\100\\200') //=>...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/pg/node_modules/postgres-bytea/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/pg/node_modules/postgres-bytea/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI ...
# postgres-date [![Build Status](https://travis-ci.org/bendrucker/postgres-date.svg?branch=master)](https://travis-ci.org/bendrucker/postgres-date) [![Greenkeeper badge](https://badges.greenkeeper.io/bendrucker/postgres-date.svg)](https://greenkeeper.io/) > Postgres date output parser This package parses [date/time o...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/pg/node_modules/postgres-date/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/pg/node_modules/postgres-date/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Se...
# postgres-interval [![Build Status](https://travis-ci.org/bendrucker/postgres-interval.svg?branch=master)](https://travis-ci.org/bendrucker/postgres-interval) [![Greenkeeper badge](https://badges.greenkeeper.io/bendrucker/postgres-interval.svg)](https://greenkeeper.io/) > Parse Postgres interval columns ## Install ...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/pg/node_modules/postgres-interval/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/pg/node_modules/postgres-interval/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity sty...
# Lilconfig ⚙️ [![npm version](https://badge.fury.io/js/lilconfig.svg)](https://badge.fury.io/js/lilconfig) [![install size](https://packagephobia.now.sh/badge?p=lilconfig)](https://packagephobia.now.sh/result?p=lilconfig) [![Coverage Status](https://coveralls.io/repos/github/antonk52/lilconfig/badge.svg)](https://cove...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/postcss-load-config/node_modules/lilconfig/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/postcss-load-config/node_modules/lilconfig/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description...
# `react-is` This package allows you to test arbitrary values and see if they're a particular React element type. ## Installation ```sh # Yarn yarn add react-is # NPM npm install react-is ``` ## Usage ### Determining if a Component is Valid ```js import React from "react"; import * as ReactIs from "react-is"; c...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/prop-types/node_modules/react-is/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/prop-types/node_modules/react-is/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style...
2.6.9 / 2017-09-22 ================== * remove ReDoS regexp in %o formatter (#504) 2.6.8 / 2017-05-18 ================== * Fix: Check for undefined on browser globals (#462, @marbemac) 2.6.7 / 2017-05-16 ================== * Fix: Update ms to 2.0.0 to fix regular expression denial of service vulnerability (#...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/send/node_modules/debug/CHANGELOG.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/send/node_modules/debug/CHANGELOG.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search e...
# debug [![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) [![Slack](https://visionmedia-com...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/send/node_modules/debug/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/send/node_modules/debug/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engine ...
1.0.2 / 2018-01-21 ================== * Fix encoding `%` as last character 1.0.1 / 2016-06-09 ================== * Fix encoding unpaired surrogates at start/end of string 1.0.0 / 2016-06-08 ================== * Initial release
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/send/node_modules/encodeurl/HISTORY.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/send/node_modules/encodeurl/HISTORY.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Sear...
# encodeurl [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Encode a URL to a percent-encoded form, excluding already-encode...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/send/node_modules/encodeurl/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/send/node_modules/encodeurl/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search...
# ansi-regex > Regular expression for matching [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) ## Install ``` $ npm install ansi-regex ``` ## Usage ```js const ansiRegex = require('ansi-regex'); ansiRegex().test('\u001B[4mcake\u001B[0m'); //=> true ansiRegex().test('cake'); //=> false '\u0...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/string-width-cjs/node_modules/ansi-regex/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/string-width-cjs/node_modules/ansi-regex/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "...
# emoji-regex [![Build status](https://travis-ci.org/mathiasbynens/emoji-regex.svg?branch=master)](https://travis-ci.org/mathiasbynens/emoji-regex) _emoji-regex_ offers a regular expression to match all emoji symbols (including textual representations of emoji) as per the Unicode Standard. This repository contains a ...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/string-width-cjs/node_modules/emoji-regex/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/string-width-cjs/node_modules/emoji-regex/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description":...
# strip-ansi [![Build Status](https://travis-ci.org/chalk/strip-ansi.svg?branch=master)](https://travis-ci.org/chalk/strip-ansi) > Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string ## Install ``` $ npm install strip-ansi ``` ## Usage ```js const stripAnsi = require('strip-an...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/string-width-cjs/node_modules/strip-ansi/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/string-width-cjs/node_modules/strip-ansi/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "...
# ansi-regex > Regular expression for matching [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) ## Install ``` $ npm install ansi-regex ``` ## Usage ```js const ansiRegex = require('ansi-regex'); ansiRegex().test('\u001B[4mcake\u001B[0m'); //=> true ansiRegex().test('cake'); //=> false '\u0...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/strip-ansi-cjs/node_modules/ansi-regex/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/strip-ansi-cjs/node_modules/ansi-regex/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perp...
# postcss-value-parser (forked + inlined) This is a customized version of of [PostCSS Value Parser](https://github.com/TrySound/postcss-value-parser) to fix some bugs around parsing CSS functions.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/tailwindcss/lib/value-parser/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/tailwindcss/lib/value-parser/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Sear...
# postcss-value-parser (forked + inlined) This is a customized version of of [PostCSS Value Parser](https://github.com/TrySound/postcss-value-parser) to fix some bugs around parsing CSS functions.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/tailwindcss/src/value-parser/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/tailwindcss/src/value-parser/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Sear...
MIT License Copyright (c) 2020 Evan Wallace Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, dist...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/tsx/node_modules/esbuild/LICENSE.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/tsx/node_modules/esbuild/LICENSE.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search eng...
# esbuild This is a JavaScript bundler and minifier. See https://github.com/evanw/esbuild and the [JavaScript API documentation](https://esbuild.github.io/api/) for details.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/tsx/node_modules/esbuild/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/tsx/node_modules/esbuild/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search engin...
MIT License Copyright (c) 2020 Evan Wallace Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, dist...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/vite/node_modules/esbuild/LICENSE.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/vite/node_modules/esbuild/LICENSE.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search e...
# esbuild This is a JavaScript bundler and minifier. See https://github.com/evanw/esbuild and the [JavaScript API documentation](https://esbuild.github.io/api/) for details.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/vite/node_modules/esbuild/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/vite/node_modules/esbuild/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perplexity style AI Search eng...
# ansi-regex > Regular expression for matching [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) ## Install ``` $ npm install ansi-regex ``` ## Usage ```js const ansiRegex = require('ansi-regex'); ansiRegex().test('\u001B[4mcake\u001B[0m'); //=> true ansiRegex().test('cake'); //=> false '\u0...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/wrap-ansi-cjs/node_modules/ansi-regex/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perple...
# ansi-styles [![Build Status](https://travis-ci.org/chalk/ansi-styles.svg?branch=master)](https://travis-ci.org/chalk/ansi-styles) > [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles) for styling strings in the terminal You probably want the higher-level [chalk](https://github.com/...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/wrap-ansi-cjs/node_modules/ansi-styles/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perp...
# emoji-regex [![Build status](https://travis-ci.org/mathiasbynens/emoji-regex.svg?branch=master)](https://travis-ci.org/mathiasbynens/emoji-regex) _emoji-regex_ offers a regular expression to match all emoji symbols (including textual representations of emoji) as per the Unicode Standard. This repository contains a ...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perp...
# string-width > Get the visual width of a string - the number of columns required to display it Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and do...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/wrap-ansi-cjs/node_modules/string-width/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/wrap-ansi-cjs/node_modules/string-width/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Pe...
# strip-ansi [![Build Status](https://travis-ci.org/chalk/strip-ansi.svg?branch=master)](https://travis-ci.org/chalk/strip-ansi) > Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string ## Install ``` $ npm install strip-ansi ``` ## Usage ```js const stripAnsi = require('strip-an...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/wrap-ansi-cjs/node_modules/strip-ansi/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perple...
MIT License Copyright (c) 2020 Evan Wallace Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, dist...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@esbuild-kit/core-utils/node_modules/esbuild/LICENSE.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@esbuild-kit/core-utils/node_modules/esbuild/LICENSE.md", "date": "2025-01-04T14:07:19", "stars": 1910, "descr...
# esbuild This is a JavaScript bundler and minifier. See https://github.com/evanw/esbuild and the [JavaScript API documentation](https://esbuild.github.io/api/) for details.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@esbuild-kit/core-utils/node_modules/esbuild/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@esbuild-kit/core-utils/node_modules/esbuild/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "descrip...
# API Documentation *Please use only this documented API when working with the parser. Methods not documented here are subject to change at any point.* ## `parser` function This is the module's main entry point. ```js const parser = require('postcss-selector-parser'); ``` ### `parser([transform], [options])` Crea...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser/API.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser/API.md", "date": "2025-01-04T14:07:19", ...
# 6.0.10 - Fixed: `isPseudoElement()` supports `:first-letter` and `:first-line` # 6.0.9 - Fixed: `Combinator.raws` property type # 6.0.8 - Fixed: reduced size # 6.0.7 - Fixed: parse animation percents # 6.0.6 - Fixed: parse quoted attributes containing a newline correctly # 6.0.5 - Perf: rework unesc for a ...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser/CHANGELOG.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser/CHANGELOG.md", "date": "2025-01-04T...
# postcss-selector-parser [![Build Status](https://travis-ci.org/postcss/postcss-selector-parser.svg?branch=master)](https://travis-ci.org/postcss/postcss-selector-parser) > Selector parser with built in methods for working with selector strings. ## Install With [npm](https://npmjs.com/package/postcss-selector-parse...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser/README.md", "date": "2025-01-04T14:07:...
# esbuild This is the macOS ARM 64-bit binary for esbuild, a JavaScript bundler and minifier. See https://github.com/evanw/esbuild for details.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/drizzle-kit/node_modules/@esbuild/darwin-arm64/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/drizzle-kit/node_modules/@esbuild/darwin-arm64/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "des...
# tailwindcss/nesting This is a PostCSS plugin that wraps [postcss-nested](https://github.com/postcss/postcss-nested) or [postcss-nesting](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting) and acts as a compatibility layer to make sure your nesting plugin of choice properly understands Tai...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/tailwindcss/lib/postcss-plugins/nesting/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/tailwindcss/lib/postcss-plugins/nesting/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Pe...
# tailwindcss/nesting This is a PostCSS plugin that wraps [postcss-nested](https://github.com/postcss/postcss-nested) or [postcss-nesting](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting) and acts as a compatibility layer to make sure your nesting plugin of choice properly understands Tai...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/tailwindcss/src/postcss-plugins/nesting/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/tailwindcss/src/postcss-plugins/nesting/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Pe...
# esbuild This is the macOS ARM 64-bit binary for esbuild, a JavaScript bundler and minifier. See https://github.com/evanw/esbuild for details.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/tsx/node_modules/@esbuild/darwin-arm64/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/tsx/node_modules/@esbuild/darwin-arm64/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Perp...
# esbuild This is the macOS ARM 64-bit binary for esbuild, a JavaScript bundler and minifier. See https://github.com/evanw/esbuild for details.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/vite/node_modules/@esbuild/darwin-arm64/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/vite/node_modules/@esbuild/darwin-arm64/README.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Pe...
# esbuild This is the macOS ARM 64-bit binary for esbuild, a JavaScript bundler and minifier. See https://github.com/evanw/esbuild for details.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@esbuild-kit/core-utils/node_modules/@esbuild/darwin-arm64/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@esbuild-kit/core-utils/node_modules/@esbuild/darwin-arm64/README.md", "date": "2025-01-04T14:07:19",...
# `react-context` ## Installation ```sh $ yarn add @radix-ui/react-context # or $ npm install @radix-ui/react-context ``` ## Usage This is an internal utility, not intended for public usage.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-context/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-context/README.md", "date": "2025-01-04T...
# `react-context` ## Installation ```sh $ yarn add @radix-ui/react-context # or $ npm install @radix-ui/react-context ``` ## Usage This is an internal utility, not intended for public usage.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-context/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-context/README.md", "date": "2025-01-04T14:07:19...
# `react-context` ## Installation ```sh $ yarn add @radix-ui/react-context # or $ npm install @radix-ui/react-context ``` ## Usage This is an internal utility, not intended for public usage.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-context/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-context/README.md", "date": "2025-01-04T14:0...
# `react-context` ## Installation ```sh $ yarn add @radix-ui/react-context # or $ npm install @radix-ui/react-context ``` ## Usage This is an internal utility, not intended for public usage.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-context/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-context/README.md", "date": "2025-01...
# `react-context` ## Installation ```sh $ yarn add @radix-ui/react-context # or $ npm install @radix-ui/react-context ``` ## Usage This is an internal utility, not intended for public usage.
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-context/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-context/README.md", "date": "2025-01...
The MIT License (MIT) Copyright (c) 2016 Zeit, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publi...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/send/node_modules/debug/node_modules/ms/license.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/send/node_modules/debug/node_modules/ms/license.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "...
# ms [![Build Status](https://travis-ci.org/zeit/ms.svg?branch=master)](https://travis-ci.org/zeit/ms) [![Slack Channel](http://zeit-slackin.now.sh/badge.svg)](https://zeit.chat/) Use this package to easily convert various time formats to milliseconds. ## Examples ```js ms('2 days') // 172800000 ms('1d') // 8...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/send/node_modules/debug/node_modules/ms/readme.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/send/node_modules/debug/node_modules/ms/readme.md", "date": "2025-01-04T14:07:19", "stars": 1910, "description": "Pe...
### Intro The prerequisite for this code mod is to migrate your usages to the new syntax, so overloads for hooks and `QueryClient` methods shouldn't be available anymore. ### Affected usages Please note, this code mod transforms usages only where the first argument is an object expression. The following usage shoul...
{ "source": "ammaarreshi/Gemini-Search", "title": "node_modules/@tanstack/react-query/build/codemods/src/v5/keep-previous-data/README.md", "url": "https://github.com/ammaarreshi/Gemini-Search/blob/main/node_modules/@tanstack/react-query/build/codemods/src/v5/keep-previous-data/README.md", "date": "2025-01-04T14...
# Form Builder A dynamic form-building tool that allows users to create, customize, and validate forms seamlessly within web applications. Built with React, Next.js, and various other technologies, Form Builder provides an intuitive interface for developers and users alike. ## Table of Contents - [Form Builder](#form...
{ "source": "hasanharman/form-builder", "title": "README.md", "url": "https://github.com/hasanharman/form-builder/blob/main/README.md", "date": "2024-09-24T11:02:33", "stars": 1902, "description": "A dynamic form-building tool that allows users to create, customize, and validate forms seamlessly within web ...
# Maintainers ## Here is a list of maintainers for the AG2 project. | Name | GitHub Handle | Organization | Features | |-----------------|------------------------------------------------------------|----------------------...
{ "source": "ag2ai/ag2", "title": "MAINTAINERS.md", "url": "https://github.com/ag2ai/ag2/blob/main/MAINTAINERS.md", "date": "2024-11-11T20:43:34", "stars": 1869, "description": "AG2 (formerly AutoGen): The Open-Source AgentOS. Join us at: https://discord.gg/pAbnFJrkgZ", "file_size": 4986 }
## NOTICE Copyright (c) 2023 - 2025, AG2ai, Inc., AG2ai open-source projects maintainers and core contributors This project is a fork of https://github.com/microsoft/autogen. The [original project](https://github.com/microsoft/autogen) is licensed under the MIT License as detailed in [LICENSE_original_MIT](./licens...
{ "source": "ag2ai/ag2", "title": "NOTICE.md", "url": "https://github.com/ag2ai/ag2/blob/main/NOTICE.md", "date": "2024-11-11T20:43:34", "stars": 1869, "description": "AG2 (formerly AutoGen): The Open-Source AgentOS. Join us at: https://discord.gg/pAbnFJrkgZ", "file_size": 1133 }
<a name="readme-top"></a> <p align="center"> <!-- The image URL points to the GitHub-hosted content, ensuring it displays correctly on the PyPI website.--> <img src="https://raw.githubusercontent.com/ag2ai/ag2/27b37494a6f72b1f8050f6bd7be9a7ff232cf749/website/static/img/ag2.svg" width="150" title="hover text"> <b...
{ "source": "ag2ai/ag2", "title": "README.md", "url": "https://github.com/ag2ai/ag2/blob/main/README.md", "date": "2024-11-11T20:43:34", "stars": 1869, "description": "AG2 (formerly AutoGen): The Open-Source AgentOS. Join us at: https://discord.gg/pAbnFJrkgZ", "file_size": 14345 }
# AG2: Responsible AI FAQs ## What is AG2? AG2 is a framework for simplifying the orchestration, optimization, and automation of LLM workflows. It offers customizable and conversable agents that leverage the strongest capabilities of the most advanced LLMs, like GPT-4, while addressing their limitations by integrating...
{ "source": "ag2ai/ag2", "title": "TRANSPARENCY_FAQS.md", "url": "https://github.com/ag2ai/ag2/blob/main/TRANSPARENCY_FAQS.md", "date": "2024-11-11T20:43:34", "stars": 1869, "description": "AG2 (formerly AutoGen): The Open-Source AgentOS. Join us at: https://discord.gg/pAbnFJrkgZ", "file_size": 9317 }
# Announcements 🔥 🎉 **Nov 11, 2024:** We are evolving AutoGen into **AG2**! A new organization [AG2AI](https://github.com/ag2ai) is created to host the development of AG2 and related projects with open governance. Check [AG2's new look](https://ag2.ai/). 📄 **License:** We adopt the Apache 2.0 license from v0.3. Th...
{ "source": "ag2ai/ag2", "title": "announcements.md", "url": "https://github.com/ag2ai/ag2/blob/main/announcements.md", "date": "2024-11-11T20:43:34", "stars": 1869, "description": "AG2 (formerly AutoGen): The Open-Source AgentOS. Join us at: https://discord.gg/pAbnFJrkgZ", "file_size": 4324 }
# Devcontainer Configurations for AG2 Welcome to the `.devcontainer` directory! Here you'll find Dockerfiles and devcontainer configurations that are essential for setting up your AG2 development environment. Below is a brief overview and how you can utilize them effectively. These configurations can be used with Cod...
{ "source": "ag2ai/ag2", "title": ".devcontainer/README.md", "url": "https://github.com/ag2ai/ag2/blob/main/.devcontainer/README.md", "date": "2024-11-11T20:43:34", "stars": 1869, "description": "AG2 (formerly AutoGen): The Open-Source AgentOS. Join us at: https://discord.gg/pAbnFJrkgZ", "file_size": 1175...
### Description <!-- A clear and concise description of the issue or feature request. --> ### Environment - Package name & version: <!-- Specify the ag2 package name and version (e.g., autogen v0.7.2) --> - Python version: <!-- Specify the Python version (e.g., 3.12) --> - Operating System: <!-- Specify the OS (e.g., ...
{ "source": "ag2ai/ag2", "title": ".github/ISSUE_TEMPLATE.md", "url": "https://github.com/ag2ai/ag2/blob/main/.github/ISSUE_TEMPLATE.md", "date": "2024-11-11T20:43:34", "stars": 1869, "description": "AG2 (formerly AutoGen): The Open-Source AgentOS. Join us at: https://discord.gg/pAbnFJrkgZ", "file_size": ...