-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 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
48
49
50
51
52
53
54
55
{
"name": "gemkit-cli",
"version": "0.3.1",
"description": "CLI for working with Gemini AI agents, plans, and sessions",
"type": "module",
"author": "Richard Ng <the.richardng.ai@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/therichardngai-code/gemkit-cli.git"
},
"homepage": "https://gemkit.cc",
"bugs": {
"url": "https://github.com/therichardngai-code/gemkit-cli/issues"
},
"keywords": [
"cli",
"gemkit",
"gemini",
"ai"
],
"main": "dist/index.js",
"bin": {
"gk": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --minify --outfile=dist/index.js --external:ws --external:node-pty",
"build:dev": "tsc",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
"start": "node dist/index.js"
},
"dependencies": {
"cac": "^6.7.14",
"dotenv": "^16.3.1",
"node-pty": "^1.1.0",
"ora": "^8.0.1",
"picocolors": "^1.1.1",
"tar": "^7.5.2",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/tar": "^6.1.13",
"@types/ws": "^8.18.1",
"esbuild": "^0.27.2",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18"
}
}