-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 987 Bytes
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
{
"name": "@google/gemini-api-cli",
"version": "0.2.1",
"description": "CLI to access Gemini API",
"license": "Apache-2.0",
"type": "module",
"bin": {
"gemini-api": "./dist/cli.js"
},
"files": [
"dist/cli.js",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build ./src/cli.ts --outdir dist --target node --banner=\"#!/usr/bin/env node\"",
"prepare": "node scripts/prepare.js",
"compile": "bun build --compile ./src/cli.ts --outfile dist/gemini-api",
"test": "bun test",
"lint": "biome check .",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"citty": "^0.1.6",
"dotenv": "^17.4.2",
"js-yaml": "^4.1.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"bun-types": "latest",
"typescript": "^5.7.0",
"@biomejs/biome": "latest",
"esbuild": "latest"
}
}