mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-16 00:51:25 -07:00
45 lines
1011 B
JSON
45 lines
1011 B
JSON
{
|
|
"name": "get-ripgrep",
|
|
"version": "0.0.0-dev",
|
|
"description": "A module for downloading ripgrep at runtime a Node project",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "node ../../scripts/build_package.js",
|
|
"prepublishOnly": "npm run build",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"test": "vitest run",
|
|
"test:ci": "vitest run --coverage",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"lvce-editor",
|
|
"ripgrep"
|
|
],
|
|
"author": "Lvce Editor",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"execa": "^9.5.2",
|
|
"extract-zip": "^2.0.1",
|
|
"fs-extra": "^11.3.0",
|
|
"got": "^14.4.5",
|
|
"path-exists": "^5.0.0",
|
|
"xdg-basedir": "^5.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/node": "^22.13.0",
|
|
"vitest": "^3.1.1",
|
|
"prettier": "^3.4.2",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true
|
|
}
|
|
}
|