-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@involvex/gemini-cli-context",
"version": "1.0.4",
"description": "updates Gemini.md files for Gemini-cli .",
"homepage": "https://github.com/involvex/gemini-cli-context",
"repository": {
"type": "git",
"url": "https://github.com/involvex/gemini-cli-context.git"
},
"keywords": [
"gemini",
"ai",
"google",
"generative-ai"
],
"author": "Involvex",
"main": "src/index.js",
"bin": {
"gemini-cli-context": "dist/gemini-cli-context.cjs"
},
"type": "module",
"scripts": {
"start": "node src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format": "prettier --write .",
"prebuild": "if not exist dist mkdir dist",
"build": "esbuild src/index.js --bundle --platform=node --banner:js=\"#!/usr/bin/env node\" --outfile=dist/gemini-cli-context.cjs",
"bundle": "repomix",
"postbundle": "echo 'Project bundled into a single file using repomix. You can find the output in the project root.'"
},
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.1.3",
"axios": "^1.12.2",
"dotenv": "^16.6.1"
},
"devDependencies": {
"esbuild": "^0.25.10",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"globals": "^15.15.0",
"prettier": "^3.6.2",
"repomix": "^1.6.0"
}
}