| 1234567891011121314151617181920212223242526272829 |
- 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"
- };
- export { AGENTS, INSTALL_PAGE, LOCKS };
|