### Cloud Platforms Source: https://openalternative.co/helper Cloud computing services for hosting and deployment. ```GCP type: cloud faviconUrl: https://assets.openalternative.co/stacks/gcp/favicon.png ``` ```Vercel type: cloud faviconUrl: https://assets.openalternative.co/stacks/vercel/favicon.png ``` -------------------------------- ### Manticore Search Integration Examples Source: https://openalternative.co/manticore Illustrative examples of how to integrate Manticore Search with various programming languages. These snippets demonstrate basic connection and query execution, highlighting the developer-friendly setup and multi-language support. ```python # Example using Python client from manticoresearch.core import ManticoreSearch client = ManticoreSearch(host='localhost', port=9308) # Indexing a document client.index(index='products', body={'id': 1, 'title': 'Example Product', 'description': 'A great product'}) # Searching results = client.search(index='products', body={'query': {'match': {'title': 'Product'}}}) print(results) ``` ```php // Example using PHP client require 'vendor/autoload.php'; use Manticoresearch\Client; $client = new Client(); // Indexing a document $client->index('products')->add(['id' => 2, 'title' => 'Another Product', 'description' => 'Another great product']); // Searching $search = $client->search('products', 'Product'); print_r($search->getData()); ``` ```javascript // Example using JavaScript client (Node.js) const { ManticoresearchClient } = require('manticoresearch-client'); const client = new ManticoresearchClient('http://localhost:9308'); // Indexing a document client.index('products').add({ id: 3, title: 'JS Product', description: 'Product for JS' }); // Searching client.search('products', { query: { match: { title: 'JS' } } }) .then(results => console.log(results)) .catch(err => console.error(err)); ``` ```go // Example using Go client package main import ( "fmt" "github.com/manticoresoftware/manticoresearch-go" ) func main() { client, _ := manticoresearch.NewClient("http://localhost:9308") // Indexing a document _, _ = client.Index("products").Add([]map[string]interface{}{ {"id": 4, "title": "Go Product", "description": "Product for Go"}, }) // Searching results, _ := client.Search("products", map[string]interface{}{ "query": map[string]interface{}{ "match": map[string]interface{}{ "title": "Go", }, }, }) fmt.Println(results) } ``` ```java // Example using Java client import com.manticoresearch.client.ManticoresearchClient; import com.manticoresearch.client.SearchRequest; public class ManticoreExample { public static void main(String[] args) { ManticoresearchClient client = new ManticoresearchClient("http://localhost:9308"); // Indexing a document client.index("products").add(Map.of("id", 5, "title", "Java Product", "description", "Product for Java")); // Searching SearchRequest request = new SearchRequest("products"); request.setQuery(Map.of("match", Map.of("title", "Java"))); String results = client.search(request); System.out.println(results); } } ``` ```rust // Example using Rust client use manticoresearch_client::client::Client; #[tokio::main] async fn main() { let client = Client::new("http://localhost:9308"); // Indexing a document client.index("products").add(serde_json::json!({ "id": 6, "title": "Rust Product", "description": "Product for Rust" })).await.unwrap(); // Searching let results = client.search("products", serde_json::json!({ "query": { "match": { "title": "Rust" } } })).await.unwrap(); println!("{:?}", results); } ``` -------------------------------- ### UI Element: Submit Project Button Source: https://openalternative.co/workadventure Example of JavaScript/HTML structure for a 'Get your project featured' button, likely a call to action for submitting new tools. ```javascript self.__next_f.push([ 1, "57:[\"$\",\"$L25\",null,{\"tooltip\":\"Get your project featured\",\"children\":[\"$\",\"$L38\",null,{\"href\":\"/submit\",\"className\":\"grid place-items-center size-10 p-1 rounded-lg border hover:bg-muted\",\"children\":[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-plus size-6\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"1ays0h\",{\"d\":\"M5 12h14\"}], [\"$\",\"path\",\"s699le\",{\"d\":\"M12 5v14\"}], \"$undefined\" ]}]}]]) ``` -------------------------------- ### Testing Frameworks and Libraries Source: https://openalternative.co/helper Tools for unit, integration, and end-to-end testing. ```Vitest type: test faviconUrl: https://assets.openalternative.co/stacks/vitest/favicon.png?v=1753436240598 ``` ```Testing Library type: test faviconUrl: https://assets.openalternative.co/stacks/testinglibrary/favicon.png?v=1753436205218 ``` -------------------------------- ### Pipenv Environment Setup Source: https://openalternative.co/midori-browser Example of a `Pipfile` for Pipenv, managing project dependencies. Pipenv is a tool that aims to bring the best of all packaging worlds to the Python world. ```toml [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [packages] requests = "*" flask = "^2.0.0" [dev-packages] pytest = "*" [requires] python_version = "3.9" ``` -------------------------------- ### Cap Tool Details Source: https://openalternative.co/helper Details for Cap, an open-source alternative to Loom for screen recording. Includes website URL, tagline, description, discount information, and commit dates. ```json { "name": "Cap", "slug": "cap", "websiteUrl": "https://cap.so", "tagline": "Beautiful, shareable screen recordings in seconds", "description": "Cap is an open-source alternative to Loom, offering lightweight and powerful screen recording capabilities with instant sharing features.", "stars": 10578, "forks": 668, "discountCode": "NEW20", "discountAmount": "20% off", "firstCommitDate": "2023-11-17T20:31:46.000Z", "lastCommitDate": "2025-07-25T16:57:18.000Z", "publishedAt": "2024-03-04T13:05:23.000Z" } ``` -------------------------------- ### Juno Project Scaffolding Source: https://openalternative.co/juno Command to quickly scaffold a new Juno project. This command initiates the project setup process, allowing developers to start building applications with Juno's backend services. ```bash npm create juno@latest ``` -------------------------------- ### Development Frameworks Source: https://openalternative.co/helper Key frameworks for building web applications and backend services. ```Next.js type: framework faviconUrl: https://assets.openalternative.co/stacks/nextjs/favicon.png ``` -------------------------------- ### Tiledesk Project Information Source: https://openalternative.co/helper Details for the Tiledesk open-source project, including its description, star and fork counts, last commit time, and its positioning as an alternative to Manychat. ```html
Favicon of Tiledesk

Tiledesk

Elevate customer support with AI-powered chat solutions

AI-enhanced live chat platform for seamless customer engagement, featuring chatbots, multichannel support, and advanced analytics.

Open Source Alternative to:

Favicon of Manychat

Manychat

``` -------------------------------- ### Juno Project Scaffolding Source: https://openalternative.co/juno Quickly start a new project with Juno, an open-source serverless platform. This command initializes a new Juno project, allowing you to build and deploy secure, scalable applications with minimal setup. ```bash npm create juno@latest ``` -------------------------------- ### Chaskiq Next.js Runtime Initialization Source: https://openalternative.co/helper This snippet represents the client-side initialization code for the Chaskiq application, likely generated by Next.js. It configures the runtime environment, registers modules, and sets up providers like TooltipProvider and SearchProvider. ```javascript $RC("B:1","S:1")(self.__next_f=self.__next_f||[]).push([0])self.__next_f.push([1,"1:\"$Sreact.fragment\"\n"])self.__next_f.push([1,"2:I[16190,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"9613\",\"static/chunks/9613-f0611bd0cb51f13b.js\",\"794\",\"static/chunks/794-72e5fee74ead0203.js\",\"6485\",\"static/chunks/6485-bbb1fcc965d9202a.js\",\"592\",\"static/chunks/592-753615b5dc7669a0.js\",\"8449\",\"static/chunks/8449-8fdd0eaf552a7d2b.js\",\"3063\",\"static/chunks/3063-ddecbaef1c3a491b.js\",\"4106\",\"static/chunks/4106-757d5fd55f388317.js\",\"584\",\"static/chunks/584-15843c7b02b597ed.js\",\"7470\",\"static/chunks/7470-f7bc6bb852e6b898.js\",\"9584\",\"static/chunks/9584-77bdc4be90510535.js\",\"7177\",\"static/chunks/app/layout-c6310a75cdd3843b.js\"],\"NuqsAdapter\"]\n"])self.__next_f.push([1,"3:I[92516,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"8860\",\"static/chunks/8860-2776e61f32f165e2.js\",\"9613\",\"static/chunks/9613-f0611bd0cb51f13b.js\",\"794\",\"static/chunks/794-72e5fee74ead0203.js\",\"6485\",\"static/chunks/6485-bbb1fcc965d9202a.js\",\"6874\",\"static/chunks/6874-7ad57742cb6d9b06.js\",\"1992\",\"static/chunks/1992-f0bd399459248757.js\",\"592\",\"static/chunks/592-753615b5dc7669a0.js\",\"9084\",\"static/chunks/9084-a3e07c4e881700a1.js\",\"2010\",\"static/chunks/2010-6708de353df691e2.js\",\"8449\",\"static/chunks/8449-8fdd0eaf552a7d2b.js\",\"3063\",\"static/chunks/3063-ddecbaef1c3a491b.js\",\"3543\",\"static/chunks/3543-ffceea5227ed9f28.js\",\"242\",\"static/chunks/242-dc9139b0eaea28d0.js\",\"478\",\"static/chunks/478-754556c20744ba98.js\",\"1456\",\"static/chunks/1456-1f84ba44417dae2b.js\",\"221\",\"static/chunks/221-bc3087be30340253.js\",\"9145\",\"static/chunks/9145-9d8b88c356468a1b.js\",\"584\",\"static/chunks/584-15843c7b02b597ed.js\",\"1545\",\"static/chunks/1545-964ef9dbbb1a0913.js\",\"4489\",\"static/chunks/4489-d4dde464d019ee87.js\",\"9526\",\"static/chunks/9526-8941614e37ae3fb9.js\",\"9828\",\"static/chunks/app/(web)/%5Bslug%5D/page-f769a6c71a82ba01.js\"],\"TooltipProvider\"]\n"])self.__next_f.push([1,"4:I[80217,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"9613\",\"static/chunks/9613-f0611bd0cb51f13b.js\",\"794\",\"static/chunks/794-72e5fee74ead0203.js\",\"6485\",\"static/chunks/6485-bbb1fcc965d9202a.js\",\"592\",\"static/chunks/592-753615b5dc7669a0.js\",\"8449\",\"static/chunks/8449-8fdd0eaf552a7d2b.js\",\"3063\",\"static/chunks/3063-ddecbaef1c3a491b.js\",\"4106\",\"static/chunks/4106-757d5fd55f388317.js\",\"584\",\"static/chunks/584-15843c7b02b597ed.js\",\"7470\",\"static/chunks/7470-f7bc6bb852e6b898.js\",\"9584\",\"static/chunks/9584-77bdc4be90510535.js\",\"7177\",\"static/chunks/app/layout-c6310a75cdd3843b.js\"],\"SearchProvider\"]\n"])self.__next_f.push([1,"5:I[51362,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"9613\",\"static/chunks/9613-f0611bd0cb51f13b.js\",\"794\",\"static/chunks/794-72e5fee74ead0203.js\",\"6485\",\"static/chunks/6485-bbb1fcc965d9202a.js\",\"592\",\"static/chunks/592-753615b5dc7669a0.js\",\"8449\",\"static/chunks/8449-8fdd0eaf552a7d2b.js\",\"3063\",\"static/chunks/3063-ddecbaef1c3a491b.js\",\"4106\",\"static/chunks/4106-757d5fd55f388317.js\",\"584\",\"static/chunks/584-15843c7b02b597ed.js\",\"7470\",\"static/chunks/7470-f7bc6bb852e6b898.js\",\"9584\",\"static/chunks/9584-77bdc4be90510535.js\",\"7177\",\"static/chunks/app/layout-c6310a75cdd3843b.js\"],\"ThemeProvider\"]\n"])self.__next_f.push([1,"6:I[87555,[],\"\"]\n7:I[31295,[],\"\"]\n"])self.__next_f.push([1,"9:I[15441,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\" ``` -------------------------------- ### Add Featured Project Link (JavaScript) Source: https://openalternative.co/freeter This snippet defines a UI element for a 'Get your project featured' link. It includes a tooltip and an anchor tag with specific styling and an SVG icon, likely intended to guide users to a submission page for featuring their projects. ```JavaScript self.__next_f.push([1,"58:[\"$\",\"$L59\",null,{\"tooltip\":\"Get your project featured\",\"children\":[\"$\",\"$L38\",null,{\"href\":\"/submit\",\"className\":\"grid place-items-center size-10 p-1 rounded-lg border hover:bg-muted\",\"children\":[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-plus size-6\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"1ays0h\",{\"d\":\"M5 12h14\"}], [\"$\",\"path\",\"s699le\",{\"d\":\"M12 5v14\"}],\"$undefined\"}]}]}]])} ``` -------------------------------- ### UI Frameworks and Libraries Source: https://openalternative.co/helper Popular frameworks and libraries for building user interfaces and styling applications. ```React type: ui_framework faviconUrl: https://assets.openalternative.co/stacks/react/favicon.png ``` ```Tailwind CSS type: ui faviconUrl: https://assets.openalternative.co/stacks/tailwind/favicon.png ``` ```Radix UI type: ui faviconUrl: https://assets.openalternative.co/stacks/radixui/favicon.png?v=1753436119848 ``` ```Shadcn UI type: ui faviconUrl: https://assets.openalternative.co/stacks/shadcn/favicon.png?v=1753437769157 ``` ```Tiptap type: ui faviconUrl: https://assets.openalternative.co/stacks/tiptap/favicon.png?v=1753436208916 ``` -------------------------------- ### Comp AI Compliance Platform Source: https://openalternative.co/grafana Comp AI helps you get SOC 2, ISO 27001, or HIPAA compliant in just 4 weeks. It offers a transparent, automated, and cost-effective compliance solution with instant setup and no sales calls or upfront contracts. ```json { "id": "cm68fcu3r0001lj0ccmjwr26d", "name": "Comp AI", "slug": "comp", "websiteUrl": "https://trycomp.ai", "affiliateUrl": "https://go.openalternative.co/comp", "tagline": "Get SOC 2, ISO 27001 or HIPAA compliant in 4 weeks", "description": "Get SOC 2, ISO 27001 or HIPAA compliant in 4 weeks. Transparent, automated, and cost-effective compliance. Get started instantly, no sales calls, no upfront contracts.", "stars": 932, "forks": 128, "faviconUrl": "https://assets.openalternative.co/tools/comp/favicon.png?v=1743082548070", "isFeatured": true, "discountCode": "", "discountAmount": "10% off for 3 months", "firstCommitDate": "$D2025-01-15T20:43:05.000Z", "lastCommitDate": "$D2025-07-25T19:40:41.000Z", "publishedAt": "$D2025-01-22T23:00:00.000Z", "createdAt": "$D2025-01-22T21:37:06.663Z", "updatedAt": "$D2025-07-25T20:00:52.250Z", "ownerId": "eMSTVMNEfJLneSyD8yZaKFwn7OHVhDLR", "alternatives": [ { "id": "clzhggwal0000xt6a41qf9mzu", "name": "Vanta", "slug": "vanta", "description": "Automate compliance, manage risk, and prove trust — continuously", "faviconUrl": "https://assets.openalternative.co/alternatives/vanta/favicon.png?v=1738071832219", "adPrice": 29, "_count": { "tools": 3 } } ] } ``` -------------------------------- ### Tool Data: Comp AI Compliance Platform Source: https://openalternative.co/instant Comp AI provides an automated and cost-effective solution for achieving SOC 2, ISO 27001, or HIPAA compliance within four weeks. It offers a transparent process with no sales calls or upfront contracts, allowing users to get started instantly. ```json { "id": "cm68fcu3r0001lj0ccmjwr26d", "name": "Comp AI", "slug": "comp", "websiteUrl": "https://trycomp.ai", "affiliateUrl": "https://go.openalternative.co/comp", "tagline": "Get SOC 2, ISO 27001 or HIPAA compliant in 4 weeks", "description": "Get SOC 2, ISO 27001 or HIPAA compliant in 4 weeks. Transparent, automated, and cost-effective compliance. Get started instantly, no sales calls, no upfront contracts.", "stars": 932, "forks": 128, "faviconUrl": "https://assets.openalternative.co/tools/comp/favicon.png?v=1743082548070", "isFeatured": true, "discountCode": "", "discountAmount": "10% off for 3 months", "firstCommitDate": "2025-01-15T20:43:05.000Z", "lastCommitDate": "2025-07-25T19:40:41.000Z", "publishedAt": "2025-01-22T23:00:00.000Z", "createdAt": "2025-01-22T21:37:06.663Z", "updatedAt": "2025-07-25T20:00:52.250Z", "ownerId": "eMSTVMNEfJLneSyD8yZaKFwn7OHVhDLR", "alternatives": [ { "id": "clzhggwal0000xt6a41qf9mzu", "name": "Vanta", "slug": "vanta", "description": "Automate compliance, manage risk, and prove trust — continuously", "faviconUrl": "https://assets.openalternative.co/alternatives/vanta/favicon.png?v=1738071832219", "adPrice": 29, "_count": { "tools": 3 } } ] } ``` -------------------------------- ### Build Tools Source: https://openalternative.co/helper Tools for compiling, bundling, and transforming code. ```Babel type: builder faviconUrl: https://assets.openalternative.co/stacks/babel/favicon.png?v=1753435773367 ``` ```Webpack type: builder faviconUrl: https://assets.openalternative.co/stacks/webpack/favicon.png ``` -------------------------------- ### Project Details Section Source: https://openalternative.co/zammad A general container for project details, including community metrics and potentially other metadata. ```html
Details:
``` -------------------------------- ### Milvus Installation Source: https://openalternative.co/milvus Command to install the Milvus Python SDK. ```bash pip install milvus ``` -------------------------------- ### API Specification Tools Source: https://openalternative.co/helper Tools for defining and documenting APIs. ```OpenAPI type: tool faviconUrl: https://assets.openalternative.co/stacks/openapi/favicon.png?v=1753436066431 ``` -------------------------------- ### Docker Stack Example Source: https://openalternative.co/ory An example of a software stack entry for Docker, detailing its properties as a tool. ```APIDOC Stack: Docker name: "Docker" slug: "docker" type: "tool" faviconUrl: "https://assets.openalternative.co/stacks/docker/favicon.png" _count: { tools: 326 } ``` -------------------------------- ### Postiz Tool Details Source: https://openalternative.co/helper Details for Postiz, an AI-powered social media management platform. Includes website URL, tagline, description, discount information, and commit dates. ```json { "name": "Postiz", "slug": "postiz", "websiteUrl": "https://postiz.com", "tagline": "AI-powered social media management platform", "description": "Postiz offers an all-in-one solution for scheduling posts, creating content, and analyzing performance across multiple social networks.", "stars": 22668, "forks": 3594, "discountCode": "OPENPOSTIZ", "discountAmount": "15% off", "firstCommitDate": "2023-07-08T17:24:22.000Z", "lastCommitDate": "2025-07-25T18:57:10.000Z", "publishedAt": "2024-09-01T21:30:00.000Z" } ``` -------------------------------- ### Bash Stack Example Source: https://openalternative.co/ory An example of a software stack entry for Bash, detailing its properties as a programming language. ```APIDOC Stack: Bash name: "Bash" slug: "bash" type: "language" faviconUrl: "https://assets.openalternative.co/stacks/bash/favicon.png" _count: { tools: 320 } ``` -------------------------------- ### Golang Stack Example Source: https://openalternative.co/ory An example of a software stack entry for Golang, detailing its properties as a programming language. ```APIDOC Stack: Golang name: "Golang" slug: "golang" type: "language" faviconUrl: "https://assets.openalternative.co/stacks/golang/favicon.png" _count: { tools: 95 } ``` -------------------------------- ### Tolgee Localization Platform Details Source: https://openalternative.co/helper Details for the Tolgee localization platform, designed for modern web applications. Includes website, tagline, description, and metadata. This entry represents structured data describing the tool. ```json { "id": "cm1682iec000bj1uwvz9e70p4", "name": "Tolgee", "slug": "tolgee", "websiteUrl": "https://tolgee.io?utm_source=openalternative&utm_campaign=openalternative_featured", "affiliateUrl": null, "tagline": "Effortless localization for modern web applications", "description": "Simplify translation management with an intuitive platform for developers and translators, offering real-time collaboration and seamless integration.", "stars": 3329, "forks": 289, "faviconUrl": "https://assets.openalternative.co/tools/tolgee/favicon.png?v=1738071663404", "isFeatured": true, "discountCode": null, "discountAmount": null, "firstCommitDate": "$D2020-10-13T16:36:39.000Z", "lastCommitDate": "$D2025-07-25T14:58:51.000Z", "publishedAt": "$D2024-05-16T21:40:33.000Z", "createdAt": "$D2024-04-21T20:43:56.187Z", "updatedAt": "$D2025-07-25T20:00:52.534Z", "ownerId": null, "alternatives": [ { "id": "cm1682iec000bj1uwvz9e70p4", "name": "Lokalise", "slug": "lokalise", "description": "A translation management platform that allows users to streamline the localization process for their software.", "faviconUrl": "https://assets.openalternative.co/alternatives/lokalise/favicon.png?v=1738071832219", "adPrice": null, "_count": { "tools": 3 } } ] } ``` -------------------------------- ### NodeJS Stack Example Source: https://openalternative.co/ory An example of a software stack entry for NodeJS, detailing its properties as a runtime environment. ```APIDOC Stack: NodeJS name: "NodeJS" slug: "nodejs" type: "runtime" faviconUrl: "https://assets.openalternative.co/stacks/nodejs/favicon.png" _count: { tools: 370 } ``` -------------------------------- ### JavaScript Initialization Script Source: https://openalternative.co/frappe-helpdesk This script appears to be part of a web application's initialization process, likely for a framework like Next.js. It manages the loading and execution of various JavaScript chunks and providers, such as React fragment, TooltipProvider, and SearchProvider, to render the application's UI and functionality. ```JavaScript $RC("B:1","S:1")(self.\__next_f=self.\__next_f||[]).push([0])self.\__next_f.push([1,"1:\"$Sreact.fragment\"\ "])self.\__next_f.push([1,"2:I[16190,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"9613\",\"static/chunks/9613-f0611bd0cb51f13b.js\",\"794\",\"static/chunks/794-72e5fee74ead0203.js\",\"6485\",\"static/chunks/6485-bbb1fcc965d9202a.js\",\"592\",\"static/chunks/592-753615b5dc7669a0.js\",\"8449\",\"static/chunks/8449-8fdd0eaf552a7d2b.js\",\"3063\",\"static/chunks/3063-ddecbaef1c3a491b.js\",\"4106\",\"static/chunks/4106-757d5fd55f388317.js\",\"584\",\"static/chunks/584-15843c7b02b597ed.js\",\"7470\",\"static/chunks/7470-f7bc6bb852e6b898.js\",\"9584\",\"static/chunks/9584-77bdc4be90510535.js\",\"7177\",\"static/chunks/app/layout-c6310a75cdd3843b.js\"],\"NuqsAdapter\"]\ "])self.\__next_f.push([1,"3:I[92516,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"8860\",\"static/chunks/8860-2776e61f32f165e2.js\",\"9613\",\"static/chunks/9613-f0611bd0cb51f13b.js\",\"794\",\"static/chunks/794-72e5fee74ead0203.js\",\"6485\",\"static/chunks/6485-bbb1fcc965d9202a.js\",\"6874\",\"static/chunks/6874-7ad57742cb6d9b06.js\",\"1992\",\"static/chunks/1992-f0bd399459248757.js\",\"592\",\"static/chunks/592-753615b5dc7669a0.js\",\"9084\",\"static/chunks/9084-a3e07c4e881700a1.js\",\"2010\",\"static/chunks/2010-6708de353df691e2.js\",\"8449\",\"static/chunks/8449-8fdd0eaf552a7d2b.js\",\"3063\",\"static/chunks/3063-ddecbaef1c3a491b.js\",\"3543\",\"static/chunks/3543-ffceea5227ed9f28.js\",\"242\",\"static/chunks/242-dc9139b0eaea28d0.js\",\"478\",\"static/chunks/478-754556c20744ba98.js\",\"1456\",\"static/chunks/1456-1f84ba44417dae2b.js\",\"221\",\"static/chunks/221-bc3087be30340253.js\",\"9145\",\"static/chunks/9145-9d8b88c356468a1b.js\",\"584\",\"static/chunks/584-15843c7b02b597ed.js\",\"1545\",\"static/chunks/1545-964ef9dbbb1a0913.js\",\"4489\",\"static/chunks/4489-d4dde464d019ee87.js\",\"9526\",\"static/chunks/9526-8941614e37ae3fb9.js\",\"9828\",\"static/chunks/app/(web)/%5Bslug%5D/page-f769a6c71a82ba01.js\"],\"TooltipProvider\"]\ "])self.\__next_f.push([1,"4:I[80217,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"9613\",\"static/chunks/9613-f0611bd0cb51f13b.js\",\"794\",\"static/chunks/794-72e5fee74ead0203.js\",\"6485\",\"static/chunks/6485-bbb1fcc965d9202a.js\",\"592\",\"static/chunks/592-753615b5dc7669a0.js\",\"8449\",\"static/chunks/8449-8fdd0eaf552a7d2b.js\",\"3063\",\"static/chunks/3063-ddecbaef1c3a491b.js\",\"4106\",\"static/chunks/4106-757d5fd55f388317.js\",\"584\",\"static/chunks/584-15843c7b02b597ed.js\",\"7470\",\"static/chunks/7470-f7bc6bb852e6b898.js\",\"9584\",\"static/chunks/9584-77bdc4be90510535.js\",\"7177\",\"static/chunks/app/layout-c6310a75cdd3843b.js\"],\"SearchProvider\"]\ "])self.\__next_f.push([1,"5:I[51362,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"9613\",\"static/chunks/9613-f0611bd0cb51f13b.js\",\"794\",\"static/chunks/794-72e5fee74ead0203.js\",\"6485\",\"static/chunks/6485-bbb1fcc965d9202a.js\",\"592\",\"static/chunks/592-753615b5dc7669a0.js\",\"8449\",\"static/chunks/8449-8fdd0eaf552a7d2b.js\",\"3063\",\"static/chunks/3063-ddecbaef1c3a491b.js\",\"4106\",\"static/chunks/4106-757d5fd55f388317.js\",\"584\",\"static/chunks/584-15843c7b02b597ed.js\",\"7470\",\"static/chunks/7470-f7bc6bb852e6b898.js\",\"9584\",\"static/chunks/9584-77bdc4be90510535.js\",\"7177\",\"static/chunks/app/layout-c6310a75cdd3843b.js\"],\"ThemeProvider\"]\ "])self.\__next_f.push([1,"6:I[87555,[],\"\"]\ 7:I[31295,[],\"\"]\ "])self.\__next_f.push([1,"9:I[15441,[\"8229\",\"static/chunks/9da6db1e-e623bf0ffce21e13.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"4630\",\"static/chunks/4630-759a8dba70c24df8.js\",\"3950\",\"static/chunks/3950-5da92302ee848850.js\",\"8860\",\"static/chunks/8860-2776e61f32f165e2.js\",\"9613\",\"static/chunks/9613-f0611bd0cb51f13b.js\",\"794\",\"static/chunks/794-72e5fee74ead0203.js\",\"6485\",\"static/chunks/6485-bbb1fcc965d9202a.js\",\"6874\",\"static/chunks/6874-7ad57742cb6d9b06.js\",\"1992\",\"static/chunks/1992-f0bd399459248757.js\",\"592\",\"static/chunks/592-753615b5dc7669a0.js\",\"9084\",\"static/chunks/9084-a3e07c4e881700a1.js\",\"2010\",\"static/chunks/2010-6708de353df691e2.js\",\"8449\",\"static/chunks/8449-8fdd0eaf552a7d2b.js\",\"3063\",\"static/chunks/3063-ddecbaef1c3a491b.js\",\"3543\",\"static/chunks/3543-ffceea5227ed9f28.js\",\"242\",\"static/chunks/242-dc9139b0eaea28d0.js\",\"478\",\"static/chunks/478-754556c20744ba98.js\",\"1456\",\"static/chunks/1456-1f84ba44417dae2b.js\",\"221\",\"static/chunks/221-bc3087be30340253.js\",\"9145\",\"static/chunks/9145-9d8b88c356468a1b.js\",\"584\",\"static/chunks/584-15843c7b02b597ed.js\",\"1545\",\"static/chunks/1545-964ef9dbbb1a0913.js\",\"4489\",\"static/chunks/4489-d4dde464d019ee87.js\",\"9526\",\"static/chunks/9526-8941614e37ae3fb9.js\",\"9828\",\"static/chunks/app/(web)/%5Bslug%5D/page-f769a6c71a82ba01.js\"],\"Page\"]\ "] ``` -------------------------------- ### Package Managers Source: https://openalternative.co/helper Tools for managing project dependencies. ```pnpm type: package_manager faviconUrl: https://assets.openalternative.co/stacks/pnpm/favicon.png?v=1753436099821 ```