| 123456789101112131415161718192021222324252627282930313233 |
- 'use strict';
- const AGENTS = [
- "npm",
- "yarn",
- "yarn@berry",
- "pnpm",
- "pnpm@6",
- "bun",
- "deno"
- ];
- const LOCKS = {
- "bun.lock": "bun",
- "bun.lockb": "bun",
- "deno.lock": "deno",
- "pnpm-lock.yaml": "pnpm",
- "yarn.lock": "yarn",
- "package-lock.json": "npm",
- "npm-shrinkwrap.json": "npm"
- };
- const INSTALL_PAGE = {
- "bun": "https://bun.sh",
- "deno": "https://deno.com",
- "pnpm": "https://pnpm.io/installation",
- "pnpm@6": "https://pnpm.io/6.x/installation",
- "yarn": "https://classic.yarnpkg.com/en/docs/install",
- "yarn@berry": "https://yarnpkg.com/getting-started/install",
- "npm": "https://docs.npmjs.com/cli/v8/configuring-npm/install"
- };
- exports.AGENTS = AGENTS;
- exports.INSTALL_PAGE = INSTALL_PAGE;
- exports.LOCKS = LOCKS;
|